22 lines
813 B
C
22 lines
813 B
C
// Dankzij http://tedwvc.wordpress.com/2009/08/10/avoiding-problems-with-vc2005-sp1-security-update-kb971090/
|
|
// Forceer dat de .762 versie van de DLL's gebruikt wordt. Die hebben we namelijk altijd gedistribueerd.
|
|
|
|
#ifndef __midl
|
|
#define _SXS_ASSEMBLY_VERSION "8.0.50727.762"
|
|
#define _CRT_ASSEMBLY_VERSION _SXS_ASSEMBLY_VERSION
|
|
#define _MFC_ASSEMBLY_VERSION _SXS_ASSEMBLY_VERSION
|
|
#define _ATL_ASSEMBLY_VERSION _SXS_ASSEMBLY_VERSION
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
__declspec(selectany) int _forceCRTManifest;
|
|
__declspec(selectany) int _forceMFCManifest;
|
|
__declspec(selectany) int _forceAtlDllManifest;
|
|
__declspec(selectany) int _forceCRTManifestRTM;
|
|
__declspec(selectany) int _forceMFCManifestRTM;
|
|
__declspec(selectany) int _forceAtlDllManifestRTM;
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |