mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
19 lines
No EOL
558 B
C
19 lines
No EOL
558 B
C
// pch.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#if _WIN32 || _WIN64
|
|
#pragma comment(lib, "Core.lib")
|
|
#pragma comment(lib, "Utilities.lib")
|
|
#pragma comment(lib, "Windows.lib")
|
|
#pragma comment(lib, "SevenZip.lib")
|
|
#pragma comment(lib, "Lua.lib")
|
|
#pragma comment(lib, "ws2_32.lib") //Winsock Library
|
|
#define DllExport __declspec(dllexport)
|
|
#else
|
|
#define __stdcall
|
|
#define DllExport __attribute__((visibility("default")))
|
|
#endif |