qfrjava
2025-04-18 e6569847e43bc666e53d5373d9bbe9a4410e4ba1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
 
#undef PG_FUNCTION_INFO_V1
#define PG_FUNCTION_INFO_V1(funcname) \
extern __declspec (dllexport) Datum funcname(PG_FUNCTION_ARGS); \
extern __declspec (dllexport) const Pg_finfo_record * CppConcat(pg_finfo_,funcname)(void); \
const Pg_finfo_record * \
CppConcat(pg_finfo_,funcname) (void) \
{ \
    static const Pg_finfo_record my_finfo = { 1 }; \
    return &my_finfo; \
} \
extern int no_such_variable