|
11 | 11 | * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group |
12 | 12 | * Portions Copyright (c) 1994, Regents of the University of California |
13 | 13 | * |
14 | | - * $PostgreSQL: pgsql/src/include/fmgr.h,v 1.65 2010/02/26 02:01:20 momjian Exp $ |
| 14 | + * $PostgreSQL: pgsql/src/include/fmgr.h,v 1.66 2010/05/27 07:59:48 itagaki Exp $ |
15 | 15 | * |
16 | 16 | *------------------------------------------------------------------------- |
17 | 17 | */ |
@@ -328,7 +328,7 @@ typedef const Pg_finfo_record *(*PGFInfoFunction) (void); |
328 | 328 | *doesn't hurt to add PGDLLIMPORT in case they don't. |
329 | 329 | */ |
330 | 330 | #definePG_FUNCTION_INFO_V1(funcname) \ |
331 | | -externPGDLLIMPORT const Pg_finfo_record * CppConcat(pg_finfo_,funcname)(void); \ |
| 331 | +externPGDLLEXPORT const Pg_finfo_record * CppConcat(pg_finfo_,funcname)(void); \ |
332 | 332 | const Pg_finfo_record * \ |
333 | 333 | CppConcat(pg_finfo_,funcname) (void) \ |
334 | 334 | { \ |
@@ -397,7 +397,7 @@ typedef const Pg_magic_struct *(*PGModuleMagicFunction) (void); |
397 | 397 | #definePG_MAGIC_FUNCTION_NAME_STRING "Pg_magic_func" |
398 | 398 |
|
399 | 399 | #definePG_MODULE_MAGIC \ |
400 | | -externPGDLLIMPORT const Pg_magic_struct *PG_MAGIC_FUNCTION_NAME(void); \ |
| 400 | +externPGDLLEXPORT const Pg_magic_struct *PG_MAGIC_FUNCTION_NAME(void); \ |
401 | 401 | const Pg_magic_struct * \ |
402 | 402 | PG_MAGIC_FUNCTION_NAME(void) \ |
403 | 403 | { \ |
|