forked from len0rd/rockbox
Add sendfirm Windows version, currently in the form of a DLL so it could
be easy integrated into programs (will require VS2005 to compile) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17932 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b1e57c8c8e
commit
b42a51bf64
8 changed files with 533 additions and 0 deletions
22
utils/MTP/MTP_DLL/MTP_DLL.cpp
Normal file
22
utils/MTP/MTP_DLL/MTP_DLL.cpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
// MTP_DLL.cpp : Defines the entry point for the DLL application.
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "MTP_DLL.h"
|
||||
|
||||
|
||||
#ifdef _MANAGED
|
||||
#pragma managed(push, off)
|
||||
#endif
|
||||
|
||||
BOOL APIENTRY DllMain( HMODULE hModule,
|
||||
DWORD ul_reason_for_call,
|
||||
LPVOID lpReserved
|
||||
)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#ifdef _MANAGED
|
||||
#pragma managed(pop)
|
||||
#endif
|
BIN
utils/MTP/MTP_DLL/MTP_DLL.dll
Executable file
BIN
utils/MTP/MTP_DLL/MTP_DLL.dll
Executable file
Binary file not shown.
11
utils/MTP/MTP_DLL/MTP_DLL.h
Normal file
11
utils/MTP/MTP_DLL/MTP_DLL.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
// The following ifdef block is the standard way of creating macros which make exporting
|
||||
// from a DLL simpler. All files within this DLL are compiled with the MTP_DLL_EXPORTS
|
||||
// symbol defined on the command line. this symbol should not be defined on any project
|
||||
// that uses this DLL. This way any other project whose source files include this file see
|
||||
// MTP_DLL_API functions as being imported from a DLL, whereas this DLL sees symbols
|
||||
// defined with this macro as being exported.
|
||||
#ifdef MTP_DLL_EXPORTS
|
||||
#define MTP_DLL_API __declspec(dllexport)
|
||||
#else
|
||||
#define MTP_DLL_API __declspec(dllimport)
|
||||
#endif
|
20
utils/MTP/MTP_DLL/MTP_DLL.sln
Normal file
20
utils/MTP/MTP_DLL/MTP_DLL.sln
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||
# Visual Studio 2005
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MTP_DLL", "MTP_DLL.vcproj", "{C7A39A2D-2ADF-40A3-A9A5-0DF4509B761B}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{C7A39A2D-2ADF-40A3-A9A5-0DF4509B761B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{C7A39A2D-2ADF-40A3-A9A5-0DF4509B761B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{C7A39A2D-2ADF-40A3-A9A5-0DF4509B761B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{C7A39A2D-2ADF-40A3-A9A5-0DF4509B761B}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
251
utils/MTP/MTP_DLL/MTP_DLL.vcproj
Normal file
251
utils/MTP/MTP_DLL/MTP_DLL.vcproj
Normal file
|
@ -0,0 +1,251 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8,00"
|
||||
Name="MTP_DLL"
|
||||
ProjectGUID="{C7A39A2D-2ADF-40A3-A9A5-0DF4509B761B}"
|
||||
RootNamespace="MTP_DLL"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="2"
|
||||
CharacterSet="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="d:\wmsdk\wmfsdk95\include;d:\wmsdk\wmfsdk95\wmdm\inc"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;MTP_DLL_EXPORTS"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="2"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
DebugInformationFormat="4"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="mssachlp.lib"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="d:\wmsdk\wmfsdk95\lib,d:\wmsdk\wmfsdk95\wmdm\lib"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="2"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="2"
|
||||
CharacterSet="1"
|
||||
WholeProgramOptimization="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="d:\wmsdk\wmfsdk95\include;d:\wmsdk\wmfsdk95\wmdm\inc"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;MTP_DLL_EXPORTS"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="2"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="mssachlp.lib"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="d:\wmsdk\wmfsdk95\lib,d:\wmsdk\wmfsdk95\wmdm\lib"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="2"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\MTP_DLL.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\sendfirm_win.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="0"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\stdafx.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
UsePrecompiledHeader="1"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\MTP_DLL.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\stdafx.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
189
utils/MTP/MTP_DLL/sendfirm_win.cpp
Normal file
189
utils/MTP/MTP_DLL/sendfirm_win.cpp
Normal file
|
@ -0,0 +1,189 @@
|
|||
/* Windows MTP Firmware Uploading Implementation
|
||||
*
|
||||
* Based on http://opensource.creative.com/mtp_xfer.html
|
||||
*
|
||||
* Edited by Maurus Cuelenaere for Rockbox
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include "mswmdm_i.c"
|
||||
#include "mswmdm.h"
|
||||
#include "sac.h"
|
||||
#include "scclient.h"
|
||||
|
||||
/*
|
||||
* Compilation requirements:
|
||||
*
|
||||
* Download the Windows Media Format 9.5 SDK
|
||||
* Add "c:\wmsdk\wmfsdk95\include,c:\wmsdk\wmfsdk95\wmdm\inc" to your inclusion path
|
||||
* Add "c:\wmsdk\wmfsdk95\lib,c:\wmsdk\wmfsdk95\wmdm\lib" to your library inclusion path
|
||||
* Link to "mssachlp.lib"
|
||||
*
|
||||
*/
|
||||
|
||||
__declspec(dllexport) bool send_fw(LPWSTR file, int filesize)
|
||||
{
|
||||
bool return_value = false;
|
||||
HRESULT hr;
|
||||
IComponentAuthenticate* pICompAuth;
|
||||
CSecureChannelClient *m_pSacClient = new CSecureChannelClient;
|
||||
IWMDeviceManager3* m_pIdvMgr = NULL;
|
||||
|
||||
/* these are generic keys */
|
||||
BYTE abPVK[] = {0x00};
|
||||
BYTE abCert[] = {0x00};
|
||||
|
||||
CoInitialize(NULL);
|
||||
|
||||
/* get an authentication interface */
|
||||
hr = CoCreateInstance(CLSID_MediaDevMgr, NULL, CLSCTX_ALL ,IID_IComponentAuthenticate, (void **)&pICompAuth);
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
/* create a secure channel client certificate */
|
||||
hr = m_pSacClient->SetCertificate(SAC_CERT_V1, (BYTE*) abCert, sizeof(abCert), (BYTE*) abPVK, sizeof(abPVK));
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
/* bind the authentication interface to the secure channel client */
|
||||
m_pSacClient->SetInterface(pICompAuth);
|
||||
|
||||
/* trigger communication */
|
||||
hr = m_pSacClient->Authenticate(SAC_PROTOCOL_V1);
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
/* get main interface to media device manager */
|
||||
hr = pICompAuth->QueryInterface(IID_IWMDeviceManager2, (void**)&m_pIdvMgr);
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
/* enumerate devices... */
|
||||
IWMDMEnumDevice *pIEnumDev;
|
||||
hr = m_pIdvMgr->EnumDevices2(&pIEnumDev);
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
hr = pIEnumDev->Reset(); /* Next will now return the first device */
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
IWMDMDevice3* pIDevice;
|
||||
unsigned long ulNumFetched;
|
||||
hr = pIEnumDev->Next(1, (IWMDMDevice **)&pIDevice, &ulNumFetched);
|
||||
while (SUCCEEDED(hr) && (hr != S_FALSE))
|
||||
{
|
||||
#if 0
|
||||
/* output device name */
|
||||
wchar_t pwsString[256];
|
||||
hr = pIDevice->GetName(pwsString, 256);
|
||||
if SUCCEEDED(hr)
|
||||
wprintf(L"Found device %s\n", pwsString);
|
||||
#endif
|
||||
|
||||
/* get storage info */
|
||||
DWORD tempDW;
|
||||
pIDevice->GetType(&tempDW);
|
||||
if (tempDW & WMDM_DEVICE_TYPE_STORAGE)
|
||||
{
|
||||
IWMDMEnumStorage *pIEnumStorage = NULL;
|
||||
IWMDMStorage *pIStorage = NULL;
|
||||
IWMDMStorage3 *pIFileStorage = NULL;
|
||||
hr = pIDevice->EnumStorage(&pIEnumStorage);
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
pIEnumStorage->Reset();
|
||||
hr = pIEnumStorage->Next(1, (IWMDMStorage **)&pIStorage, &ulNumFetched);
|
||||
while (SUCCEEDED(hr) && (hr != S_FALSE))
|
||||
{
|
||||
IWMDMStorage3 *pNewStorage;
|
||||
hr = pIStorage->QueryInterface(IID_IWMDMStorage3, (void **)&pNewStorage);
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
IWMDMStorageControl3 *pIWMDMStorageControl;
|
||||
hr = pNewStorage->QueryInterface(IID_IWMDMStorageControl3,
|
||||
(void**)&pIWMDMStorageControl);
|
||||
if SUCCEEDED(hr)
|
||||
{
|
||||
IWMDMMetaData *pIWMDMMetaData = NULL;
|
||||
hr = pNewStorage->CreateEmptyMetadataObject(&pIWMDMMetaData);
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
DWORD dw = WMDM_FORMATCODE_UNDEFINEDFIRMWARE;
|
||||
hr = pIWMDMMetaData->AddItem(WMDM_TYPE_DWORD, g_wszWMDMFormatCode, (BYTE *)&dw, sizeof(dw));
|
||||
hr = pIWMDMMetaData->AddItem(WMDM_TYPE_STRING, g_wszWMDMFileName, (BYTE *)L"nk.bin", 32);
|
||||
DWORD ow[2];
|
||||
ow[0] = filesize;
|
||||
ow[1] = 0;
|
||||
hr = pIWMDMMetaData->AddItem(WMDM_TYPE_QWORD, g_wszWMDMFileSize, (BYTE *)ow, 2 * sizeof(dw));
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
IWMDMStorage *pNewObject = NULL;
|
||||
|
||||
hr = pIWMDMStorageControl->Insert3(
|
||||
WMDM_MODE_BLOCK | WMDM_CONTENT_FILE,
|
||||
0,
|
||||
file,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
pIWMDMMetaData,
|
||||
NULL,
|
||||
(IWMDMStorage **)&pNewObject);
|
||||
|
||||
if(SUCCEEDED(hr) || hr == WMDM_S_NOT_ALL_PROPERTIES_APPLIED
|
||||
|| hr == WMDM_S_NOT_ALL_PROPERTIES_RETRIEVED)
|
||||
return_value = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* move to next Storage */
|
||||
if(!return_value)
|
||||
hr = pIEnumStorage->Next(1, (IWMDMStorage **)&pIStorage, &ulNumFetched);
|
||||
}
|
||||
pIEnumStorage->Release();
|
||||
}
|
||||
|
||||
/* move to next device */
|
||||
if(!return_value)
|
||||
hr = pIEnumDev->Next(1, (IWMDMDevice **)&pIDevice, &ulNumFetched);
|
||||
}
|
||||
pIEnumDev->Release();
|
||||
}
|
||||
m_pIdvMgr->Release();
|
||||
}
|
||||
pICompAuth->Release();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
CoUninitialize();
|
||||
|
||||
return return_value;
|
||||
}
|
||||
|
||||
/*
|
||||
* Example code:
|
||||
|
||||
#include <windows.h>
|
||||
int filesize(char* filename)
|
||||
{
|
||||
FILE* fd;
|
||||
int tmp;
|
||||
fopen_s(&fd, filename, "r");
|
||||
fseek(fd, 0, SEEK_END);
|
||||
tmp = ftell(fd);
|
||||
fclose(fd);
|
||||
return tmp;
|
||||
}
|
||||
|
||||
__declspec(dllimport) bool send_fw(LPWSTR file, int filesize);
|
||||
|
||||
int _tmain(int argc, char* argv[])
|
||||
{
|
||||
printf("Sending %s [%d]...\n", "Zlant.bin", filesize("Zlant.bin"));
|
||||
if(send_fw(L"Zlant.bin", filesize("Zlant.bin")))
|
||||
printf("Transmitting succesfull!\n");
|
||||
else
|
||||
printf("Transmitting failed!\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
*/
|
8
utils/MTP/MTP_DLL/stdafx.cpp
Normal file
8
utils/MTP/MTP_DLL/stdafx.cpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
// stdafx.cpp : source file that includes just the standard includes
|
||||
// MTP_DLL.pch will be the pre-compiled header
|
||||
// stdafx.obj will contain the pre-compiled type information
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: reference any additional headers you need in STDAFX.H
|
||||
// and not in this file
|
32
utils/MTP/MTP_DLL/stdafx.h
Normal file
32
utils/MTP/MTP_DLL/stdafx.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
// stdafx.h : include file for standard system include files,
|
||||
// or project specific include files that are used frequently, but
|
||||
// are changed infrequently
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
// Modify the following defines if you have to target a platform prior to the ones specified below.
|
||||
// Refer to MSDN for the latest info on corresponding values for different platforms.
|
||||
#ifndef WINVER // Allow use of features specific to Windows XP or later.
|
||||
#define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
|
||||
#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
|
||||
#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
|
||||
#define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
|
||||
#endif
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||||
// Windows Header Files:
|
||||
#include <windows.h>
|
||||
|
||||
|
||||
|
||||
// TODO: reference additional headers your program requires here
|
Loading…
Add table
Add a link
Reference in a new issue