Navigation:  Reference > Structure Definition Commands >

MEMBER DWORD

Previous pageReturn to chapter overviewNext page

This command add a new member of the structure and only have sense inside BEGIN STRUCTURE .. END STRUCTURE commands.

Syntax:

MEMBER DWORD <memberName>

 

Description:

At binary level stores a LONG (4 Bytes) value from/to Xbase++ NUMERIC value. To preserve the internal storage as 32 bit integers values >= 0x80000000 will be represented always as negative at Xbase++ level you can use the function Long2Double() .

 

Synonims:

MEMBER ULONG <memberName>

MEMBER LONG <memberName>

MEMBER UINT <memberName>

MEMBER INT <memberName>

MEMBER INT32 <memberName>

MEMBER LPARAM <memberName>

MEMBER WPARAM <memberName>

MEMBER POINTER <memberName>

MEMBER POINTER32 <memberName>

MEMBER HANDLE <memberName>

MEMBER HWND <memberName>

MEMBER HDC <memberName>

MEMBER LPSTR <memberName>

 

<memberName>

Name of the structure member.