mmsystem: Use SEGPTR for 16 bit string pointers in MCI_XXX_WINDOW_PARMS16.

This commit is contained in:
Damjan Jovanovic 2011-05-03 07:25:27 +02:00 committed by Alexandre Julliard
parent 46988651d9
commit 0f9370aecb

View File

@ -619,7 +619,7 @@ typedef struct {
WORD wReserved1; WORD wReserved1;
UINT16 nCmdShow; UINT16 nCmdShow;
WORD wReserved2; WORD wReserved2;
LPCSTR lpstrText; SEGPTR lpstrText;
} MCI_OVLY_WINDOW_PARMS16, *LPMCI_OVLY_WINDOW_PARMS16; } MCI_OVLY_WINDOW_PARMS16, *LPMCI_OVLY_WINDOW_PARMS16;
typedef struct { typedef struct {
@ -805,7 +805,7 @@ typedef struct {
UINT16 wReserved1; UINT16 wReserved1;
UINT16 nCmdShow; UINT16 nCmdShow;
UINT16 wReserved2; UINT16 wReserved2;
LPSTR lpstrText; SEGPTR lpstrText;
} MCI_DGV_WINDOW_PARMS16, *LPMCI_DGV_WINDOW_PARMS16; } MCI_DGV_WINDOW_PARMS16, *LPMCI_DGV_WINDOW_PARMS16;
#include <poppack.h> #include <poppack.h>