File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/src/backend/port/dynloader/win32.c,v 1.3 2003 /11/29 19:51:54 pgsql Exp $ */
1
+ /* $PostgreSQL: pgsql/src/backend/port/dynloader/win32.c,v 1.4 2004 /11/17 08:30:08 neilc Exp $ */
2
2
3
3
#include <windows.h>
4
4
5
+ char * dlerror (void );
6
+ int dlclose (void * handle );
7
+ void * dlsym (void * handle , const char * symbol );
8
+ void * dlopen (const char * path , int mode );
9
+
5
10
char *
6
11
dlerror (void )
7
12
{
Original file line number Diff line number Diff line change 37
37
*
38
38
*
39
39
* IDENTIFICATION
40
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.439 2004/11/17 00:14:12 tgl Exp $
40
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.440 2004/11/17 08:30:09 neilc Exp $
41
41
*
42
42
* NOTES
43
43
*
@@ -4037,7 +4037,7 @@ win32_waitpid(int *exitstatus)
4037
4037
*/
4038
4038
ereport (FATAL ,
4039
4039
(errmsg_internal ("failed to get exit code for child %lu" ,
4040
- (DWORD ) win32_childPIDArray [index ])));
4040
+ (unsigned long ) win32_childPIDArray [index ])));
4041
4041
}
4042
4042
* exitstatus = (int ) exitCode ;
4043
4043
return win32_childPIDArray [index ];
Original file line number Diff line number Diff line change 6
6
*
7
7
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
8
8
*
9
- * $PostgreSQL: pgsql/src/port/open.c,v 1.5 2004/10 /17 23:53:30 momjian Exp $
9
+ * $PostgreSQL: pgsql/src/port/open.c,v 1.6 2004/11 /17 08:30:11 neilc Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
18
18
#include <errno.h>
19
19
#include <assert.h>
20
20
21
+ int win32_open (const char * fileName , int fileFlags , ...);
22
+
21
23
static int
22
24
openFlagsToCreateFileFlags (int openFlags )
23
25
{
You can’t perform that action at this time.
0 commit comments