mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 13:44:17 +00:00
10 lines
201 B
C
10 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();
|
|
|