mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-14 13:22:27 +00:00
11 lines
201 B
C
11 lines
201 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef ANTIHOOKING_LIBRARY
|
||
|
#define AH_EXPORT extern "C" __declspec(dllexport)
|
||
|
#else
|
||
|
#define AH_EXPORT extern "C" __declspec(dllimport)
|
||
|
#endif
|
||
|
|
||
|
AH_EXPORT void AntiHookingDummyImport();
|
||
|
|