diff options
author | Bruce Momjian | 1999-03-22 16:45:30 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-03-22 16:45:30 +0000 |
commit | 48ea8b76db3b0579580172ce3eb1af73b9a4a64b (patch) | |
tree | 43912d257c446d6c44a2988897d04a8b2cc23fd0 /src/include | |
parent | 9aa535a2b967fc71a1584165d18889dfa4eb48dc (diff) |
Hi,
I have solved some problems with dynamic loading on NT. It is possible
to
run succesfully both trigger and plpgsql regression tests. The patch is
in
the included file "diff".
Dan
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utils/mcxt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/mcxt.h b/src/include/utils/mcxt.h index 6db5619a926..cce6ec865b8 100644 --- a/src/include/utils/mcxt.h +++ b/src/include/utils/mcxt.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: mcxt.h,v 1.13 1999/03/07 23:03:31 tgl Exp $ + * $Id: mcxt.h,v 1.14 1999/03/22 16:45:28 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ typedef struct MemoryContextData *MemoryContext; typedef struct GlobalMemoryData *GlobalMemory; -extern MemoryContext CurrentMemoryContext; +extern DLLIMPORT MemoryContext CurrentMemoryContext; extern MemoryContext TopMemoryContext; |