mirror of https://github.com/PCSX2/pcsx2.git
parent
ceb383628b
commit
43f461cc36
|
@ -48,11 +48,9 @@
|
|||
#if !defined(_MSC_VER) || !defined(UNICODE)
|
||||
static void SysMessage(const char *fmt, ...);
|
||||
static void __forceinline PluginNullConfigure(std::string desc, s32 &log);
|
||||
static void __forceinline PluginNullAbout(const char *aboutText);
|
||||
#else
|
||||
static void SysMessage(const wchar_t *fmt, ...);
|
||||
static void __forceinline PluginNullConfigure(std::wstring desc, s32 &log);
|
||||
static void __forceinline PluginNullAbout(const wchar_t *aboutText);
|
||||
#endif
|
||||
|
||||
enum FileMode {
|
||||
|
@ -257,11 +255,6 @@ static void __forceinline PluginNullConfigure(std::string desc, int &log)
|
|||
gtk_widget_destroy(dialog);
|
||||
}
|
||||
|
||||
static void __forceinline PluginNullAbout(const char *aboutText)
|
||||
{
|
||||
SysMessage(aboutText);
|
||||
}
|
||||
|
||||
#define ENTRY_POINT /* We don't need no stinkin' entry point! */
|
||||
|
||||
|
||||
|
@ -299,11 +292,6 @@ static void __forceinline PluginNullConfigure(std::string desc, int &log)
|
|||
SysMessage("This space is intentionally left blank.");
|
||||
}
|
||||
|
||||
static void __forceinline PluginNullAbout(const char *aboutText)
|
||||
{
|
||||
SysMessage(aboutText);
|
||||
}
|
||||
|
||||
#define ENTRY_POINT /* We don't need no stinkin' entry point! */ // TODO OSX WTF is this anyway?
|
||||
|
||||
|
||||
|
@ -331,10 +319,6 @@ static void __forceinline PluginNullConfigure(std::string desc, s32 &log)
|
|||
SysMessage("This space is intentionally left blank.");
|
||||
}
|
||||
|
||||
static void __forceinline PluginNullAbout(const char *aboutText)
|
||||
{
|
||||
SysMessage(aboutText);
|
||||
}
|
||||
#else
|
||||
|
||||
static void __forceinline SysMessage(const wchar_t *fmt, ...)
|
||||
|
@ -355,11 +339,6 @@ static void __forceinline PluginNullConfigure(std::string desc, s32 &log)
|
|||
SysMessage(L"This space is intentionally left blank.");
|
||||
}
|
||||
|
||||
static void __forceinline PluginNullAbout(const wchar_t *aboutText)
|
||||
{
|
||||
SysMessage(aboutText);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#define ENTRY_POINT \
|
||||
|
|
Loading…
Reference in New Issue