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. #endif // _WTL_SUPPORT_SDK_ATL3
  24.  
  25. #include <atlbase.h>
  26. #include <atlstdthunk.h>
  27. // Support for VS2005 Express & SDK ATL
  28. //#ifdef _WTL_SUPPORT_SDK_ATL3
  29.  
  30. namespace ATL
  31. {
  32. inline void * __stdcall __AllocStdCallThunk()
  33. {
  34. return ::HeapAlloc(::GetProcessHeap(), 0, sizeof(_stdcallthunk));
  35. }
  36.  
  37. inline void __stdcall __FreeStdCallThunk(void *p)
  38. {
  39. ::HeapFree(::GetProcessHeap(), 0, p);
  40. }
  41. };
  42. //#endif // _WTL_SUPPORT_SDK_ATL3
  43.  
  44. #include <atlapp.h>
  45.  
  46. extern CAppModule _Module;
  47.  
  48. #include <atlwin.h>
  49.  
  50. #if defined _M_IX86
  51. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
  52. #elif defined _M_IA64
  53. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  54. #elif defined _M_X64
  55. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
  56. #else
  57. #pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  58. #endif
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty