packed | |
ACTION: |
prevent padding between members of a type or typedef
|
USE: |
allow programmer to have full control over padding to align the members
|
EXAMPLE: |
packed type point word x,y,z, dword color packed type point word x,y,z, align 4 dword color |
REMARKS: |
By default, the members will be aligned to a boundary matching their size. |
RELATED: |
type
typedef
struct
|