Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Rubberduckycooly
GitHub Repository: Rubberduckycooly/RSDKv5-Decompilation
Path: blob/master/RSDKv5/main.hpp
769 views
1
#ifndef MAIN_H
2
#define MAIN_H
3
4
#if !RETRO_STANDALONE
5
#ifdef _MSC_VER
6
#define DLLExport __declspec(dllexport)
7
#else
8
#define DLLExport
9
#endif
10
11
extern "C" {
12
DLLExport int32 RSDK_main(int32 argc, char **argv, void *linkLogicPtr);
13
}
14
#else
15
int32 RSDK_main(int32 argc, char **argv, void *linkLogicPtr);
16
#endif
17
18
#endif // !ifdef MAIN_H
19