summaryrefslogtreecommitdiff
path: root/src/interfaces/odbc/gpps.h
blob: 9dc9d64210a7b838e37d798bb2a154568e05b6bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* GetPrivateProfileString
 * for UNIX use
 */
#ifndef GPPS_H
#define GPPS_H

#include "psqlodbc.h"

#ifndef WIN32
#include <sys/types.h>
#include "iodbc.h"
#endif

#ifdef __cplusplus
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
				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
#undef DWORD
#endif
#endif