Commit 6e07f234 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

wineps.drv: Write-strings warnings fix.

parent 04a0f74b
...@@ -526,7 +526,7 @@ static char *PSDRV_PPDGetWord(char *str, char **next) ...@@ -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;
......
...@@ -173,8 +173,8 @@ typedef struct _tagCONSTRAINT { ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment