system_info
-
hi
ich hab da mal ein dummes anfängerproblem: wie kann ich bei der struktur auf wProcessorArchitecture zugreifen ???typedef struct _SYSTEM_INFO { // sinf
union {
DWORD dwOemId;
struct {
WORD wProcessorArchitecture;
WORD wReserved;
};
};
DWORD dwPageSize;
LPVOID lpMinimumApplicationAddress;
LPVOID lpMaximumApplicationAddress;
DWORD dwActiveProcessorMask;
DWORD dwNumberOfProcessors;
DWORD dwProcessorType;
DWORD dwAllocationGranularity;
WORD wProcessorLevel;
WORD wProcessorRevision;} SYSTEM_INFO;
-
SYSTEM_INFO si ;
WORD test ;
test = si.wProcessorArchitecture ;
-
das hab ich auch schon versucht, aber dann sagt der compiler, dass wProcessorArchitecture nicht in der struktur ist.
-
SYSTEM_INFO si; WORD test = LOWORD(si.dwOemId);