Raphaël Junqueira fenix@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?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Le Lundi 30 Juin 2003 20:13, Alexandre Julliard a écrit :
Raphaël Junqueira fenix@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?
Hi Alexandre,
Yes, they are here for "16bit drivers". But for me its more easier to play that way than with LARGE_INTEGERs.
I'll fix it when the code will work.
Regards, Raphael
Raphaël Junqueira fenix@club-internet.fr writes:
Yes, they are here for "16bit drivers". But for me its more easier to play that way than with LARGE_INTEGERs.
I'll fix it when the code will work.
I'm not sure I like that idea, I'm worried that if code starts depending on that it will be a pain to fix later on. If you want to write the code using 16-bit fields you can do that locally, but I'd prefer that you then fix it before submitting, so that we don't need to put wrong headers in CVS.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Le Lundi 30 Juin 2003 22:51, Alexandre Julliard a écrit :
Raphaël Junqueira fenix@club-internet.fr writes:
Yes, they are here for "16bit drivers". But for me its more easier to play that way than with LARGE_INTEGERs.
I'll fix it when the code will work.
I'm not sure I like that idea, I'm worried that if code starts depending on that it will be a pain to fix later on. If you want to write the code using 16-bit fields you can do that locally, but I'd prefer that you then fix it before submitting, so that we don't need to put wrong headers in CVS.
ok ok, i'll fix it on next patch
Regards, Raphael