diff options
Diffstat (limited to 'src/interfaces/odbc/gpps.c')
-rw-r--r-- | src/interfaces/odbc/gpps.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/interfaces/odbc/gpps.c b/src/interfaces/odbc/gpps.c index 4b13fbe62e5..450f0b1e505 100644 --- a/src/interfaces/odbc/gpps.c +++ b/src/interfaces/odbc/gpps.c @@ -51,15 +51,15 @@ * ODBCINST_INI */ DWORD -GetPrivateProfileString(char *theSection, /* section name */ - char *theKey, /* search key name */ - char *theDefault, /* default value if not +GetPrivateProfileString(const char *theSection, /* section name */ + const char *theKey, /* search key name */ + const char *theDefault, /* default value if not * found */ char *theReturnBuffer, /* return value stored * here */ size_t theReturnBufferLength, /* byte length of return * buffer */ - char *theIniFileName) /* pathname of ini file to + const char *theIniFileName) /* pathname of ini file to * search */ { char buf[MAXPGPATH]; @@ -273,10 +273,10 @@ GetPrivateProfileString(char *theSection, /* section name */ DWORD -WritePrivateProfileString(char *theSection, /* section name */ - char *theKey, /* write key name */ - char *theBuffer, /* input buffer */ - char *theIniFileName) /* pathname of ini file to +WritePrivateProfileString(const char *theSection, /* section name */ + const char *theKey, /* write key name */ + const char *theBuffer, /* input buffer */ + const char *theIniFileName) /* pathname of ini file to * write */ { return 0; |