mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
cf3469e11a
natively ffs. i tested this patch on wine 4.4 on fuckin Solaris 11 snv_151
24 lines
416 B
C
24 lines
416 B
C
#ifndef LLARP_UTIL_LOKINET_INIT_H
|
|
#define LLARP_UTIL_LOKINET_INIT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#ifndef Lokinet_INIT
|
|
#if defined(_WIN32)
|
|
#define Lokinet_INIT \
|
|
DieInCaseSomehowThisGetsRunInWineButLikeWTFThatShouldNotHappenButJustInCaseHandleItWithAPopupOrSomeShit
|
|
#else
|
|
#define Lokinet_INIT _lokinet_non_shit_platform_INIT
|
|
#endif
|
|
#endif
|
|
|
|
int
|
|
Lokinet_INIT(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |