stdafx.h 418 B

12345678910111213141516171819
  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. #pragma once
  6. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  7. #define _CRT_SECURE_NO_DEPRECATE 1
  8. #include <stdio.h>
  9. #include <stdarg.h>
  10. #include <string.h>
  11. // TODO: reference additional headers your program requires here