2 * This test program was copied from documentation/cdrom-label
6 #include <string.h> /* for strcat() */
8 int PASCAL
WinMain(HINSTANCE hInstance
, HINSTANCE hPrevInstance
,
9 LPSTR lpszCmdLine
, int nCmdShow
)
11 char drive
, root
[]="C:\\", label
[1002], fsname
[1002];
12 DWORD serial
, flags
, filenamelen
, labellen
= 1000, fsnamelen
= 1000;
14 printf("Drive Serial Flags Filename-Length "
16 for (drive
= 'C'; drive
<= 'Z'; drive
++)
19 if (GetVolumeInformation(root
,label
,labellen
,&serial
,
20 &filenamelen
,&flags
,fsname
,fsnamelen
))
22 strcat(label
,"\""); strcat (fsname
,"\"");
23 printf("%c:\\ 0x%08lx 0x%08lx %15ld \"%-20s \"%-20s\n",
24 drive
, (long) serial
, (long) flags
, (long) filenamelen
,