home *** CD-ROM | disk | FTP | other *** search
/ PC Administrator / spravce.iso / RunModule / src / Stdafx.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-12-03  |  2.8 KB  |  70 lines

  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. Copyright 2001 Anish Mistry. All rights reserved.
  7.  
  8. Redistribution and use in source and binary forms, with or without modification,
  9. are permitted provided that the following conditions are met:
  10.  
  11.    1. Redistributions of source code must retain the above copyright notice, 
  12.    this list of conditions and the following disclaimer.
  13.    2. Redistributions in binary form must reproduce the above copyright notice,
  14.    this list of conditions and the following disclaimer in the documentation 
  15.    and/or other materials provided with the distribution.
  16.  
  17. THIS SOFTWARE IS PROVIDED BY ANISH MISTRY ``AS IS'' AND ANY EXPRESS OR IMPLIED 
  18. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 
  19. AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS 
  20. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
  21. OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  22. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  23. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  24. TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26.  
  27. The views and conclusions contained in the software and documentation are those
  28. of the authors and should not be interpreted as representing official policies,
  29. either expressed or implied, of Anish Mistry or AM Productions.
  30.  
  31. * Variation of the FreeBSD License. http://www.freebsd.org/copyright/freebsd-license.html
  32. */
  33.  
  34. #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
  35. #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
  36.  
  37. #if _MSC_VER > 1000
  38. #pragma once
  39. #endif // _MSC_VER > 1000
  40.  
  41. #define WIN32_LEAN_AND_MEAN        // Exclude rarely-used stuff from Windows headers
  42. #define STRICT
  43. #pragma comment(linker, "-filealign:512")
  44. #pragma comment(linker, "-align:4096")
  45. #pragma comment(linker, "/OPT:NOWIN98")
  46.  
  47. // Windows Header Files:
  48. #include <windows.h>
  49. #include <shellapi.h>
  50. #include <Commdlg.h>
  51. #include "resource.h"
  52. #include "smlcrt.h"
  53. #include "RunModule1.h"
  54.  
  55. /*
  56. // C RunTime Header Files
  57. #include <stdlib.h>
  58. #include <malloc.h>
  59. #include <memory.h>
  60. #include <tchar.h>*/
  61.  
  62. // Local Header Files
  63.  
  64. // TODO: reference additional headers your program requires here
  65.  
  66. //{{AFX_INSERT_LOCATION}}
  67. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  68.  
  69. #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
  70.