Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

stdafx.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* =STS=> stdafx.h[4277].aa01 open SMID:1 */
  2. // stdafx.h : include file for standard system include files,
  3. // or project specific include files that are used frequently,
  4. // but are changed infrequently
  5. #pragma once
  6. #ifdef WIN32
  7. #define _CRT_SECURE_NO_DEPRECATE
  8. #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
  9. #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT 1
  10. #endif
  11. #ifndef _SECURE_ATL
  12. #define _SECURE_ATL 1
  13. #endif
  14. #ifndef VC_EXTRALEAN
  15. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  16. #endif
  17. // Modify the following defines if you have to target a platform prior to the ones specified below.
  18. // Refer to MSDN for the latest info on corresponding values for different platforms.
  19. #ifndef WINVER // Allow use of features specific to Windows XP or later.
  20. #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
  21. #endif
  22. #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
  23. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
  24. #endif
  25. #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
  26. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  27. #endif
  28. #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
  29. #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
  30. #endif
  31. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
  32. // turns off MFC's hiding of some common and often safely ignored warning messages
  33. #define _AFX_ALL_WARNINGS
  34. #include <afxwin.h> // MFC core and standard components
  35. #include <afxext.h> // MFC extensions
  36. #ifndef _AFX_NO_OLE_SUPPORT
  37. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  38. #endif
  39. #ifndef _AFX_NO_AFXCMN_SUPPORT
  40. #include <afxcmn.h> // MFC support for Windows Common Controls
  41. #endif // _AFX_NO_AFXCMN_SUPPORT
  42. #ifdef _UNICODE
  43. #if defined _M_IX86
  44. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
  45. #elif defined _M_IA64
  46. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  47. #elif defined _M_X64
  48. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  49. #else
  50. #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  51. #endif
  52. #endif