The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: dacid on September 05, 2008, 04:42:33 PM

Title: C to ASM
Post by: dacid on September 05, 2008, 04:42:33 PM
PSOMESTRUCT *AnyName = NULL;

Thx in advance.
Title: Re: C to ASM
Post by: Adamanteus on September 06, 2008, 03:33:32 PM
This is deal of your style, but by agreements of assembler syntax it could be so :

NULL        EQU                0
AnyName  PSOMESTRUCT  NULL

But for it is need ever to have special type, so possible it simplify by macros :

NULL     EQU           0
PC        TEXTEQU   <DD> ; определяет указатель на код
PD        TEXTEQU   <DD> ; определяет указатель на данные
AnyName  PD  NULL

Title: Re: C to ASM
Post by: dacid on September 06, 2008, 04:37:41 PM
PSOMESTRUCT *AnyName = NULL;

PSOMESTRUCT typedef ptr SOMESTRUCT

SOMESTRUCT STRUCT
..
value1 DWORD ?
value2 LPBYTE ?
....
value5 LPSTR ?
..
SOMESTRUCT ENDS
Title: Re: C to ASM
Post by: donkey on September 07, 2008, 09:41:37 PM
A simple way...

SOMESTRUCT STRUCT
..
value1 DWORD ?
value2 LPBYTE ?
....
value5 LPSTR ?
..
SOMESTRUCT ENDS

.data?
somestruct SOMESTRUCT <?>

.data
psomestruct dd offset somestruct


Type definitions in assembly language are not quite parallel with those in C, in reality the only real typedefs that exist are the width of the object in bytes (ie BYTE/WORD/DWORD/QWORD etc...) all others are simply equated to these in Windows.inc. Since parameter checking in MASM will only check the width of the parameter it makes little difference to do C typedefs other than those that deal specifically with width.