File tree 1 file changed +48
-48
lines changed
1 file changed +48
-48
lines changed Original file line number Diff line number Diff line change 1
- /* File: connection.h
2
- *
3
- * Description: See "connection.c "
4
- *
5
- * Comments: See "notice.txt" for copyright and license information.
6
- *
7
- */
8
-
9
- #ifndef __MD5_H__
10
- #define __MD5_H__
11
-
12
- #include "psqlodbc.h"
13
-
14
- #include <stdlib.h>
15
- #include <string.h>
16
-
1
+ /* File: connection.h
2
+ *
3
+ * Description: See "md.h "
4
+ *
5
+ * Comments: See "notice.txt" for copyright and license information.
6
+ *
7
+ */
8
+
9
+ #ifndef __MD5_H__
10
+ #define __MD5_H__
11
+
12
+ #include "psqlodbc.h"
13
+
14
+ #include <stdlib.h>
15
+ #include <string.h>
16
+
17
17
#ifdef WIN32
18
18
#define MD5_ODBC
19
19
#define FRONTEND
20
20
#endif
21
- #define MD5_PASSWD_LEN 35
22
-
23
- /* From c.h */
24
- #ifndef __BEOS__
25
-
26
- #ifndef __cplusplus
27
-
28
- #ifndef bool
29
- typedef char bool ;
30
- #endif
31
-
32
- #ifndef true
33
- #define true ((bool) 1)
34
- #endif
35
-
36
- #ifndef false
37
- #define false ((bool) 0)
38
- #endif
39
- #endif /* not C++ */
40
- #endif /* __BEOS__ */
41
-
42
- #ifndef __BEOS__ /* this shouldn't be required, but is is! */
43
- typedef unsigned char uint8 ; /* == 8 bits */
44
- typedef unsigned short uint16 ; /* == 16 bits */
45
- typedef unsigned int uint32 ; /* == 32 bits */
46
- #endif /* __BEOS__ */
47
-
48
- extern bool EncryptMD5 (const char * passwd , const char * salt ,
49
- size_t salt_len , char * buf );
50
-
51
-
52
- #endif
21
+ #define MD5_PASSWD_LEN 35
22
+
23
+ /* From c.h */
24
+ #ifndef __BEOS__
25
+
26
+ #ifndef __cplusplus
27
+
28
+ #ifndef bool
29
+ typedef char bool ;
30
+ #endif
31
+
32
+ #ifndef true
33
+ #define true ((bool) 1)
34
+ #endif
35
+
36
+ #ifndef false
37
+ #define false ((bool) 0)
38
+ #endif
39
+ #endif /* not C++ */
40
+ #endif /* __BEOS__ */
41
+
42
+ #ifndef __BEOS__ /* this shouldn't be required, but is is! */
43
+ typedef unsigned char uint8 ; /* == 8 bits */
44
+ typedef unsigned short uint16 ; /* == 16 bits */
45
+ typedef unsigned int uint32 ; /* == 32 bits */
46
+ #endif /* __BEOS__ */
47
+
48
+ extern bool EncryptMD5 (const char * passwd , const char * salt ,
49
+ size_t salt_len , char * buf );
50
+
51
+
52
+ #endif
You can’t perform that action at this time.
0 commit comments