Changeset 386 for trunk/Utilities/UpnpScanner
- Timestamp:
- Mar 21, 2015, 3:11:12 AM (9 years ago)
- Location:
- trunk/Utilities/UpnpScanner
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/UpnpScanner/MainDialog.h
r168 r386 533 533 m_TextEdit = GetDlgItem(IDC_TEXT); 534 534 m_TextEdit.SetLimitText(0); 535 SetIcon(AtlLoadIconImage(IDR_MAINFRAME, GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON), LR_DEFAULTCOLOR), TRUE); 536 #if !defined(_DEBUG) 537 //SetIcon(AtlLoadIconImage(IDR_MAINFRAME, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_DEFAULTCOLOR), FALSE); 538 #endif // !defined(_DEBUG) 535 SetIcon(AtlLoadIconImage(IDR_MAINFRAME, LR_DEFAULTCOLOR, GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON)), TRUE); 536 SetIcon(AtlLoadIconImage(IDR_MAINFRAME, LR_DEFAULTCOLOR, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON)), FALSE); 539 537 _W(CenterWindow()); 540 538 #if _DEVELOPMENT && FALSE -
trunk/Utilities/UpnpScanner/UpnpScanner.rc
r168 r386 100 100 101 101 VS_VERSION_INFO VERSIONINFO 102 FILEVERSION 1, 0, 0, 26 0102 FILEVERSION 1, 0, 0, 268 103 103 PRODUCTVERSION 1,0,0,1 104 104 FILEFLAGSMASK 0x3fL … … 119 119 VALUE "CompanyName", "Roman Ryltsov" 120 120 VALUE "FileDescription", "Alax.Info UPnP Scanner Module" 121 VALUE "FileVersion", "1, 0, 0, 26 0\0"121 VALUE "FileVersion", "1, 0, 0, 268\0" 122 122 VALUE "InternalName", "UpnpScanner.exe" 123 123 VALUE "LegalCopyright", "Copyright © Alax.Info, Roman Ryltsov, 2006-2009" -
trunk/Utilities/UpnpScanner/UpnpScanner.vcxproj
r168 r386 18 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 19 19 <ConfigurationType>Application</ConfigurationType> 20 <PlatformToolset>v1 00</PlatformToolset>20 <PlatformToolset>v110_xp</PlatformToolset> 21 21 <UseOfMfc>false</UseOfMfc> 22 22 <UseOfAtl>Static</UseOfAtl> … … 26 26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 27 27 <ConfigurationType>Application</ConfigurationType> 28 <PlatformToolset>v1 00</PlatformToolset>28 <PlatformToolset>v110_xp</PlatformToolset> 29 29 <UseOfMfc>false</UseOfMfc> 30 30 <UseOfAtl>Static</UseOfAtl> -
trunk/Utilities/UpnpScanner/stdafx.h
r168 r386 8 8 #pragma once 9 9 10 #define WINVER 0x0501 11 #define _WIN32_WINNT 0x0501 12 #define _WIN32_IE 0x0500 10 #include <winsdkver.h> 13 11 14 12 #define INLINE_HRESULT_FROM_WIN32 … … 33 31 #define _WTL_NEW_PAGE_NOTIFY_HANDLERS 34 32 33 #undef _SYSINFOAPI_H_ 35 34 #include <atlapp.h> 35 #define _SYSINFOAPI_H_ 36 36 37 37 extern CAppModule _Module;
Note: See TracChangeset
for help on using the changeset viewer.