wineps.drv: Write-strings warnings fix.

This commit is contained in:
Andrew Talbot 2006-08-18 20:17:19 +01:00 committed by Alexandre Julliard
parent 04a0f74b63
commit 6e07f23482
2 changed files with 3 additions and 3 deletions

View File

@ -526,7 +526,7 @@ static char *PSDRV_PPDGetWord(char *str, char **next)
* PSDRV_AddSlot * PSDRV_AddSlot
* *
*/ */
static INT PSDRV_AddSlot(PPD *ppd, LPSTR szName, LPSTR szFullName, static INT PSDRV_AddSlot(PPD *ppd, LPCSTR szName, LPCSTR szFullName,
LPSTR szInvocationString, WORD wWinBin) LPSTR szInvocationString, WORD wWinBin)
{ {
INPUTSLOT *slot, **insert = &ppd->InputSlots; INPUTSLOT *slot, **insert = &ppd->InputSlots;

View File

@ -173,8 +173,8 @@ typedef struct _tagCONSTRAINT {
} CONSTRAINT; } CONSTRAINT;
typedef struct _tagINPUTSLOT { typedef struct _tagINPUTSLOT {
char *Name; const char *Name;
char *FullName; const char *FullName;
char *InvocationString; char *InvocationString;
WORD WinBin; /* eg DMBIN_LOWER */ WORD WinBin; /* eg DMBIN_LOWER */
struct _tagINPUTSLOT *next; struct _tagINPUTSLOT *next;