postgresql/src/include/port/win32ntdll.h
Robert Haas 8ec569479f Apply PGDLLIMPORT markings broadly.
Up until now, we've had a policy of only marking certain variables
in the PostgreSQL header files with PGDLLIMPORT, but now we've
decided to mark them all. This means that extensions running on
Windows should no longer operate at a disadvantage as compared to
extensions running on Linux: if the variable is present in a header
file, it should be accessible.

Discussion: http://postgr.es/m/CA+TgmoYanc1_FSfimhgiWSqVyP5KKmh5NP2BWNwDhO8Pg2vGYQ@mail.gmail.com
2022-04-08 08:16:38 -04:00

33 lines
886 B
C

/*-------------------------------------------------------------------------
*
* win32ntdll.h
* Dynamically loaded Windows NT functions.
*
* Portions Copyright (c) 2021-2022, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/port/win32ntdll.h
*
*-------------------------------------------------------------------------
*/
#ifndef WIN32NTDLL_H
#define WIN32NTDLL_H
/*
* Because this includes NT headers that normally conflict with Win32 headers,
* any translation unit that includes it should #define UMDF_USING_NTSTATUS
* before including <windows.h>.
*/
#include <ntstatus.h>
#include <winternl.h>
typedef NTSTATUS (__stdcall * RtlGetLastNtStatus_t) (void);
extern PGDLLIMPORT RtlGetLastNtStatus_t pg_RtlGetLastNtStatus;
extern int initialize_ntdll(void);
#endif /* WIN32NTDLL_H */