summaryrefslogtreecommitdiff
path: root/plugins/AvatarHistory
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-10-20 15:20:00 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-10-20 15:20:00 +0000
commit88966b5e76b094eff9e8a655495535a3ec2385ea (patch)
treef371b6e6fa1314e94fde7f0fdd76276de3dd6917 /plugins/AvatarHistory
parente84b4a12fbf62b7867959d5dfd58250cd9181330 (diff)
version info standartization
git-svn-id: http://svn.miranda-ng.org/main/trunk@1989 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AvatarHistory')
-rw-r--r--plugins/AvatarHistory/AvatarHistory.vcxproj6
-rw-r--r--plugins/AvatarHistory/AvatarHistory.vcxproj.filters17
-rw-r--r--plugins/AvatarHistory/res/Version.rc5
-rw-r--r--plugins/AvatarHistory/src/AvatarHistory.cpp5
4 files changed, 3 insertions, 30 deletions
diff --git a/plugins/AvatarHistory/AvatarHistory.vcxproj b/plugins/AvatarHistory/AvatarHistory.vcxproj
index 06fd3a4715..7923438ec3 100644
--- a/plugins/AvatarHistory/AvatarHistory.vcxproj
+++ b/plugins/AvatarHistory/AvatarHistory.vcxproj
@@ -208,12 +208,6 @@
<ResourceCompile Include="res\AvatarHistory.rc" />
<ResourceCompile Include="res\Version.rc" />
</ItemGroup>
- <ItemGroup>
- <CustomBuild Include="docs\avatarhist_changelog.txt" />
- <CustomBuild Include="docs\avatarhist_readme.txt" />
- <CustomBuild Include="docs\avatarhist_version.txt" />
- <CustomBuild Include="docs\langpack_avatarhist.txt" />
- </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
diff --git a/plugins/AvatarHistory/AvatarHistory.vcxproj.filters b/plugins/AvatarHistory/AvatarHistory.vcxproj.filters
index 9203e75da6..f416979a19 100644
--- a/plugins/AvatarHistory/AvatarHistory.vcxproj.filters
+++ b/plugins/AvatarHistory/AvatarHistory.vcxproj.filters
@@ -13,9 +13,6 @@
<UniqueIdentifier>{6ad471fb-470c-4466-b817-ec90cb51260c}</UniqueIdentifier>
<Extensions>ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions>
</Filter>
- <Filter Include="Docs">
- <UniqueIdentifier>{72021e6b-0e9b-4cf3-b35f-db87ed4f6541}</UniqueIdentifier>
- </Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\AvatarDlg.cpp">
@@ -68,18 +65,4 @@
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
- <ItemGroup>
- <CustomBuild Include="docs\avatarhist_changelog.txt">
- <Filter>Docs</Filter>
- </CustomBuild>
- <CustomBuild Include="docs\avatarhist_readme.txt">
- <Filter>Docs</Filter>
- </CustomBuild>
- <CustomBuild Include="docs\avatarhist_version.txt">
- <Filter>Docs</Filter>
- </CustomBuild>
- <CustomBuild Include="docs\langpack_avatarhist.txt">
- <Filter>Docs</Filter>
- </CustomBuild>
- </ItemGroup>
</Project> \ No newline at end of file
diff --git a/plugins/AvatarHistory/res/Version.rc b/plugins/AvatarHistory/res/Version.rc
index d741488c4f..cee33c8390 100644
--- a/plugins/AvatarHistory/res/Version.rc
+++ b/plugins/AvatarHistory/res/Version.rc
@@ -4,13 +4,8 @@
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
-#include "afxres.h"
#include "..\src\version.h"
-#ifdef _WIN32
-LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
-#endif //_WIN32
-
VS_VERSION_INFO VERSIONINFO
FILEVERSION __FILEVERSION_STRING
PRODUCTVERSION __FILEVERSION_STRING
diff --git a/plugins/AvatarHistory/src/AvatarHistory.cpp b/plugins/AvatarHistory/src/AvatarHistory.cpp
index a49fa28786..9c8c162136 100644
--- a/plugins/AvatarHistory/src/AvatarHistory.cpp
+++ b/plugins/AvatarHistory/src/AvatarHistory.cpp
@@ -58,7 +58,7 @@ static INT_PTR GetCachedAvatar(WPARAM wParam, LPARAM lParam);
TCHAR * GetCachedAvatar(char *proto, TCHAR *hash);
BOOL CreateShortcut(TCHAR *file, TCHAR *shortcut);
-PLUGININFOEX pluginInfo={
+PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
@@ -68,7 +68,8 @@ PLUGININFOEX pluginInfo={
__COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
- { 0xdbe8c990, 0x7aa0, 0x458d, { 0xba, 0xb7, 0x33, 0xeb, 0x7, 0x23, 0x8e, 0x71 } } // {DBE8C990-7AA0-458d-BAB7-33EB07238E71}
+ // {DBE8C990-7AA0-458d-BAB7-33EB07238E71}
+ {0xdbe8c990, 0x7aa0, 0x458d, {0xba, 0xb7, 0x33, 0xeb, 0x7, 0x23, 0x8e, 0x71}}
};
extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)