1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-31 10:45:16 +01:00

Fix declaration of Windows' StartOpenRCT

This commit is contained in:
Michał Janiszewski
2016-07-13 20:34:53 +02:00
parent 550ac03ab7
commit 31a219a961

View File

@@ -196,6 +196,9 @@ datetime64 platform_get_datetime_now_utc();
HWND windows_get_window_handle();
void platform_setup_file_associations();
void platform_remove_file_associations();
// This function cannot be marked as 'static', even though it may seem to be,
// as it requires external linkage, which 'static' prevents
__declspec(dllexport) int StartOpenRCT(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
#endif // __WINDOWS__
#if defined(__LINUX__) || defined(__MACOSX__)