Skip to content

Commit 8acb8f1

Browse files
committed
[pgpathman]: Added PGDLLIMPORT for InvalidObjectAddress and None_Receiver
1 parent e26ec10 commit 8acb8f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/include/catalog/objectaddress.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ typedef struct ObjectAddress
2828
int32 objectSubId; /* Subitem within object (eg column), or 0 */
2929
} ObjectAddress;
3030

31-
extern const ObjectAddress InvalidObjectAddress;
31+
extern PGDLLIMPORT const ObjectAddress InvalidObjectAddress;
3232

3333
#define ObjectAddressSubSet(addr, class_id, object_id, object_sub_id) \
3434
do { \

src/include/tcop/dest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ struct _DestReceiver
128128
/* Private fields might appear beyond this point... */
129129
};
130130

131-
extern DestReceiver *None_Receiver; /* permanent receiver for DestNone */
131+
extern PGDLLIMPORT DestReceiver *None_Receiver; /* permanent receiver for DestNone */
132132

133133
/* The primary destination management functions */
134134

0 commit comments

Comments
 (0)