stdafx.h 559 B

12345678910111213141516171819202122232425
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. //
  4. // $Workfile: stdafx.h $
  5. // $Archive: /n2h5/stdafx.h $
  6. // $Revision: 1 $
  7. // $Date: 11/1/12 1:00p $
  8. // $Author: Ehsan $
  9. //
  10. // $NoKeywords: $
  11. //
  12. //////////////////////////////////////////////////////////////////////////////
  13. // MS compatibility header file
  14. #ifndef STDAFX_H_
  15. #define STDAFX_H_
  16. #define _CRT_SECURE_NO_DEPRECATE
  17. #include <stdlib.h>
  18. #include <stdio.h>
  19. #include <string>
  20. #ifndef WIN32
  21. #define _strdup strdup
  22. #endif
  23. #endif /* STDAFX_H_ */