diff options
Diffstat (limited to 'src/interfaces/odbc/gpps.h')
-rw-r--r-- | src/interfaces/odbc/gpps.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/interfaces/odbc/gpps.h b/src/interfaces/odbc/gpps.h index 9dc9d64210a..c0b6a20796c 100644 --- a/src/interfaces/odbc/gpps.h +++ b/src/interfaces/odbc/gpps.h @@ -17,22 +17,22 @@ extern "C" #endif 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 valuse stored * here */ size_t theBufferLength, /* byte length of return * buffer */ - char *theIniFileName); /* pathname of ini file + const char *theIniFileName); /* pathname of ini file * to search */ DWORD - WritePrivateProfileString(char *theSection, /* section name */ - char *theKey, /* write key name */ - char *theBuffer, /* input buffer */ - char *theIniFileName); /* pathname of ini file + 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 */ #ifdef __cplusplus |