Raphaƫl Junqueira <fenix(a)club-internet.fr> writes:
Index: include/d3d9types.h =================================================================== RCS file: /home/wine/wine/include/d3d9types.h,v retrieving revision 1.2 diff -u -r1.2 d3d9types.h --- include/d3d9types.h 24 Jun 2003 19:26:51 -0000 1.2 +++ include/d3d9types.h 27 Jun 2003 22:14:40 -0000 @@ -1131,8 +1131,10 @@ typedef struct _D3DADAPTER_IDENTIFIER9 { char Driver[MAX_DEVICE_IDENTIFIER_STRING]; char Description[MAX_DEVICE_IDENTIFIER_STRING]; - char DeviceName[32]; /* Device name for GDI (ex. \\.\DISPLAY1) */ - LARGE_INTEGER DriverVersion; + char DeviceName[32]; + DWORD DriverVersionLowPart; + DWORD DriverVersionHighPart; +
Isn't DriverVersionLow/HighPart supposed to be for 16-bit code? Why do you need to use that instead of DriverVersion? -- Alexandre Julliard julliard(a)winehq.com