wineps.drv: Write-strings warnings fix.
This commit is contained in:
parent
04a0f74b63
commit
6e07f23482
|
@ -526,7 +526,7 @@ static char *PSDRV_PPDGetWord(char *str, char **next)
|
|||
* 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)
|
||||
{
|
||||
INPUTSLOT *slot, **insert = &ppd->InputSlots;
|
||||
|
|
|
@ -173,8 +173,8 @@ typedef struct _tagCONSTRAINT {
|
|||
} CONSTRAINT;
|
||||
|
||||
typedef struct _tagINPUTSLOT {
|
||||
char *Name;
|
||||
char *FullName;
|
||||
const char *Name;
|
||||
const char *FullName;
|
||||
char *InvocationString;
|
||||
WORD WinBin; /* eg DMBIN_LOWER */
|
||||
struct _tagINPUTSLOT *next;
|
||||
|
|
Loading…
Reference in New Issue