summaryrefslogtreecommitdiff
path: root/src/interfaces/odbc/gpps.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/odbc/gpps.h')
-rw-r--r--src/interfaces/odbc/gpps.h31
1 files changed, 13 insertions, 18 deletions
diff --git a/src/interfaces/odbc/gpps.h b/src/interfaces/odbc/gpps.h
index c6d1d38ec23..c2c81965f09 100644
--- a/src/interfaces/odbc/gpps.h
+++ b/src/interfaces/odbc/gpps.h
@@ -13,30 +13,25 @@
#endif
#ifdef __cplusplus
-extern "C"
-{
+extern "C" {
#endif
- DWORD GetPrivateProfileString(char *theSection, /* section name */
- char *theKey, /* search key name */
- 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
- * to search */
+DWORD
+GetPrivateProfileString(char *theSection, /* section name */
+ char *theKey, /* search key name */
+ 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 to search */
- DWORD WritePrivateProfileString(char *theSection, /* section name */
- char *theKey, /* write key name */
- char *theBuffer, /* input buffer */
- char *theIniFileName); /* pathname of ini file
- * to write */
+DWORD
+WritePrivateProfileString(char *theSection, /* section name */
+ char *theKey, /* write key name */
+ char *theBuffer, /* input buffer */
+ char *theIniFileName); /* pathname of ini file to write */
#ifdef __cplusplus
}
-
#endif
#ifndef WIN32