Module: wine Branch: master Commit: 0f9370aecb8971ba7ffad6a1153e20998d896981 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0f9370aecb8971ba7ffad6a115...
Author: Damjan Jovanovic damjan.jov@gmail.com Date: Tue May 3 07:25:27 2011 +0200
mmsystem: Use SEGPTR for 16 bit string pointers in MCI_XXX_WINDOW_PARMS16.
---
include/wine/mmsystem16.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/wine/mmsystem16.h b/include/wine/mmsystem16.h index ea997b3..245c779 100644 --- a/include/wine/mmsystem16.h +++ b/include/wine/mmsystem16.h @@ -619,7 +619,7 @@ typedef struct { WORD wReserved1; UINT16 nCmdShow; WORD wReserved2; - LPCSTR lpstrText; + SEGPTR lpstrText; } MCI_OVLY_WINDOW_PARMS16, *LPMCI_OVLY_WINDOW_PARMS16;
typedef struct { @@ -805,7 +805,7 @@ typedef struct { UINT16 wReserved1; UINT16 nCmdShow; UINT16 wReserved2; - LPSTR lpstrText; + SEGPTR lpstrText; } MCI_DGV_WINDOW_PARMS16, *LPMCI_DGV_WINDOW_PARMS16;
#include <poppack.h>