Make tablePanic static; it should not be exported.
This commit is contained in:
parent
fe78114ec1
commit
d5c7d133ad
|
@ -39,7 +39,7 @@ enum {
|
||||||
nTableColumnTypes,
|
nTableColumnTypes,
|
||||||
};
|
};
|
||||||
|
|
||||||
void (*tablePanic)(const char *, DWORD) = NULL;
|
static void (*tablePanic)(const char *, DWORD) = NULL;
|
||||||
#define panic(...) (*tablePanic)(__VA_ARGS__, GetLastError())
|
#define panic(...) (*tablePanic)(__VA_ARGS__, GetLastError())
|
||||||
#define abort $$$$ // prevent accidental use of abort()
|
#define abort $$$$ // prevent accidental use of abort()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue