summaryrefslogtreecommitdiff
path: root/plugins/OpenFolder/src
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-07-26 10:35:25 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-07-26 10:35:25 +0000
commit17255af4df794fec9365acfbb6019c74515cc877 (patch)
tree3522c87927f858d23272ed34f8cede8d7b6f01e4 /plugins/OpenFolder/src
parentb51c00fa7ee7a159b71186d818da4da1e5b34450 (diff)
OpenFolder: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14713 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/OpenFolder/src')
-rw-r--r--plugins/OpenFolder/src/openFolder.cpp8
-rw-r--r--plugins/OpenFolder/src/stdafx.cxx (renamed from plugins/OpenFolder/src/stdafx.cpp)2
-rw-r--r--plugins/OpenFolder/src/stdafx.h (renamed from plugins/OpenFolder/src/openFolder.h)0
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/OpenFolder/src/openFolder.cpp b/plugins/OpenFolder/src/openFolder.cpp
index fb2aea650f..09aa256d42 100644
--- a/plugins/OpenFolder/src/openFolder.cpp
+++ b/plugins/OpenFolder/src/openFolder.cpp
@@ -1,4 +1,4 @@
-#include "openFolder.h"
+#include "stdafx.h"
int hLangpack = 0;
HINSTANCE hInst;
@@ -21,7 +21,7 @@ PLUGININFOEX pluginInfoEx =
static IconItem icon = { LPGEN("Open Folder"), "open", IDI_FOLDER };
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
hInst = hinstDLL;
return TRUE;
@@ -61,14 +61,14 @@ static int ModulesLoaded(WPARAM, LPARAM)
return 0;
}
-HICON LoadIconExEx(const char* IcoLibName, int NonIcoLibIcon)
+HICON LoadIconExEx(const char* IcoLibName, int)
{
char szSettingName[64];
mir_snprintf(szSettingName, _countof(szSettingName), "%s_%s", OPENFOLDER_MODULE_NAME, IcoLibName);
return IcoLib_GetIcon(szSettingName);
}
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfoEx;
}
diff --git a/plugins/OpenFolder/src/stdafx.cpp b/plugins/OpenFolder/src/stdafx.cxx
index 2351f40ce5..6fb37564b7 100644
--- a/plugins/OpenFolder/src/stdafx.cpp
+++ b/plugins/OpenFolder/src/stdafx.cxx
@@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "openFolder.h" \ No newline at end of file
+#include "stdafx.h" \ No newline at end of file
diff --git a/plugins/OpenFolder/src/openFolder.h b/plugins/OpenFolder/src/stdafx.h
index dc4b22df18..dc4b22df18 100644
--- a/plugins/OpenFolder/src/openFolder.h
+++ b/plugins/OpenFolder/src/stdafx.h