Internal structure
Posted: Tue Jan 01, 2013 9:10 pm
It would be great if in a structure could create the structure.
As in C.
As in C.
Code: Select all
typedef union _LARGE_INTEGER {
struct {
DWORD LowPart;
LONG HighPart;
};
LONGLONG QuadPart;
} LARGE_INTEGER;