summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/stdafx.cxx
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-05-02 13:51:40 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-05-02 13:51:40 +0000
commitd776ba116231325d60da900827426c7b1505a8c3 (patch)
tree835164c7cfa56a5ea3a2bfc1050303c8c9cff037 /protocols/Steam/src/stdafx.cxx
parentb96fa2b498afb19bda93d0cd1e399589d17d3d3e (diff)
Steam - fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@13371 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/stdafx.cxx')
-rw-r--r--protocols/Steam/src/stdafx.cxx67
1 files changed, 0 insertions, 67 deletions
diff --git a/protocols/Steam/src/stdafx.cxx b/protocols/Steam/src/stdafx.cxx
deleted file mode 100644
index 6fe8317684..0000000000
--- a/protocols/Steam/src/stdafx.cxx
+++ /dev/null
@@ -1,67 +0,0 @@
-#include "stdafx.h"
-
-int hLangpack;
-HINSTANCE g_hInstance;
-
-HANDLE hExtraXStatus;
-
-PLUGININFOEX pluginInfo =
-{
- sizeof(PLUGININFOEX),
- __PLUGIN_NAME,
- PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
- __DESCRIPTION,
- __AUTHOR,
- __AUTHOREMAIL,
- __COPYRIGHT,
- __AUTHORWEB,
- UNICODE_AWARE,
- // {68F5A030-BA32-48EC-9507-5C2FBDEA5217}
- { 0x68f5a030, 0xba32, 0x48ec, { 0x95, 0x7, 0x5c, 0x2f, 0xbd, 0xea, 0x52, 0x17 }}
-};
-
-DWORD WINAPI DllMain(HINSTANCE hInstance, DWORD, LPVOID)
-{
- g_hInstance = hInstance;
-
- return TRUE;
-}
-
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
-{
- return &pluginInfo;
-}
-
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_PROTOCOL, MIID_LAST};
-
-extern "C" int __declspec(dllexport) Load(void)
-{
- mir_getLP(&pluginInfo);
-
- PROTOCOLDESCRIPTOR pd = { sizeof(pd) };
- pd.szName = "STEAM";
- pd.type = PROTOTYPE_PROTOCOL;
- pd.fnInit = (pfnInitProto)CSteamProto::InitProtoInstance;
- pd.fnUninit = (pfnUninitProto)CSteamProto::UninitProtoInstance;
- CallService(MS_PROTO_REGISTERMODULE, 0, (LPARAM)&pd);
-
- char iconName[100];
- mir_snprintf(iconName, SIZEOF(iconName), "%s_%s", MODULE, "gaming");
-
- // extra statuses
- HookEvent(ME_SKIN2_ICONSCHANGED, OnReloadIcons);
- hExtraXStatus = ExtraIcon_Register("steam_game", LPGEN("Steam game"), iconName);
-
- CSteamProto::InitMenus();
-
- return 0;
-}
-
-extern "C" int __declspec(dllexport) Unload(void)
-{
- CSteamProto::UninitProtoInstances();
-
- CSteamProto::UninitMenus();
-
- return 0;
-} \ No newline at end of file