fork(1) download
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5.  
  6. #pragma once
  7.  
  8. // Change these values to use different versions
  9. #define WINVER 0x0500
  10. #define _WIN32_WINNT 0x0501
  11. #define _WIN32_IE 0x0501
  12. #define _RICHEDIT_VER 0x0200
  13.  
  14. // This project was generated for VC++ 2005 Express and ATL 3.0 from Platform SDK.
  15. // Comment out this line to build the project with different versions of VC++ and ATL.
  16. //#define _WTL_SUPPORT_SDK_ATL3
  17.  
  18. // Support for VS2005 Express & SDK ATL
  19. #ifdef _WTL_SUPPORT_SDK_ATL3
  20. #define _CRT_SECURE_NO_DEPRECATE
  21. #pragma conform(forScope, off)
  22. #pragma comment(linker, "/NODEFAULTLIB:atlthunk.lib")
  23. #else
  24.  
  25. #pragma comment(lib,"atlthunk.lib")
  26.  
  27. #endif // _WTL_SUPPORT_SDK_ATL3
  28.  
  29.  
  30.  
  31.  
  32. #include <atlbase.h>
  33. #include <atlstdthunk.h>
  34. // Support for VS2005 Express & SDK ATL
  35. #ifdef _WTL_SUPPORT_SDK_ATL3
  36. namespace ATL
  37. {
  38. inline void * __stdcall __AllocStdCallThunk()
  39. {
  40. return ::HeapAlloc(::GetProcessHeap(), 0, sizeof(_stdcallthunk));
  41. }
  42.  
  43. inline void __stdcall __FreeStdCallThunk(void *p)
  44. {
  45. ::HeapFree(::GetProcessHeap(), 0, p);
  46. }
  47. };
  48. #endif // _WTL_SUPPORT_SDK_ATL3
  49.  
  50. #include <atlapp.h>
  51.  
  52. extern CAppModule _Module;
  53.  
  54. #include <atlwin.h>
  55.  
  56. #if defined _M_IX86
  57. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
  58. #elif defined _M_IA64
  59. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  60. #elif defined _M_X64
  61. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  62. #else
  63. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  64. #endif
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty