[Gelöst] Kleines WinAPI Structure Problem
Verfasst: 22.06.2008 20:29
Ich habe folgendes Structure aus der WinAPI Doku:
Dass habe ich daraus gemacht:
Ist dass jetzt falsch oder was könte da falsch laufen?
Gruss G0
Code: Alles auswählen
typedef struct _TAPE_GET_MEDIA_PARAMETERS {
LARGE_INTEGER Capacity;
LARGE_INTEGER Remaining;
DWORD BlockSize;
DWORD PartitionCount;
BOOLEAN WriteProtected;
} TAPE_GET_MEDIA_PARAMETERS,
*PTAPE_GET_MEDIA_PARAMETERS;
Code: Alles auswählen
Structure TAPE_GET_MEDIA_PARAMETERS
Capacity.LARGE_INTEGER
Remaining.LARGE_INTEGER
BlockSize.l
PartitionCount.l
WriteProtected.b
EndStructure
Gruss G0