StdAfx.h
上传用户:glass0516
上传日期:2010-01-11
资源大小:104k
文件大小:1k
源码类别:

传真(Fax)编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2. * RelayFax Open Source Project
  3. * Copyright 1996-2004 Alt-N Technologies, Ltd.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted only as authorized by the RelayFax Open 
  8. * Source License.  A copy of this license is available in file LICENSE 
  9. * in the top-level directory of the distribution.
  10. *
  11. * RelayFax is a registered trademark of Alt-N Technologies, Ltd.
  12. *
  13. * Individual files and/or contributed packages may be copyright by
  14. * other parties and subject to additional restrictions.
  15. *****************************************************************************/
  16. // stdafx.h : include file for standard system include files,
  17. //  or project specific include files that are used frequently, but
  18. //      are changed infrequently
  19. //
  20. #ifndef STDAFX_H
  21. #define STDAFX_H
  22. // Insert your headers here
  23. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  24. #pragma warning (disable:4005)
  25. #pragma warning (disable:4786)
  26. #pragma warning (disable:4503)
  27. #include <windows.h>
  28. #include <tchar.h>
  29. #include <stdio.h>
  30. #include <process.h>
  31. #include <string>
  32. #include <vector>
  33. #include <algorithm>
  34. #include <map>
  35. #include <list>
  36. #include <set>
  37. #include <deque>
  38. using namespace std;
  39. #include "resource.h"
  40. #include "util.h"
  41. #endif // STDAFX_H