mirror of
https://github.com/logos-co/velopack.git
synced 2026-09-01 22:21:16 +00:00
10 lines
246 B
C
10 lines
246 B
C
#pragma once
|
|
|
|
#if BUILDING_PLAYER_DLL
|
|
#define UNITY_API __declspec(dllexport)
|
|
#else
|
|
#define UNITY_API __declspec(dllimport)
|
|
#endif
|
|
|
|
extern "C" UNITY_API int UnityMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd);
|