www.pudn.com > 大量windows shell编程例子.zip > A_main.h


/***************************************************************** 
* 
*  Project.....:  $$APPNAME$$ 
*  Application.:  $$ROOT$$.exe 
*  Module......:  $$ROOT$$.h 
*  Description.:  Application main header 
*  Compiler....:  MS Visual C++  
*  Written by..:  $$AUTHOR$$ 
*  Environment.:  Windows 9x/NT 
* 
*******************************/ 
 
// Prevent multiple inclusions 
#define WIN32_LEAN_AND_MEAN 
#define STRICT 
 
#ifndef _APP_DEFS_ 
#define _APP_DEFS_ 
 
/*---------------------------------------------------------------*/ 
//                        INCLUDE section 
/*---------------------------------------------------------------*/ 
#include  
#include  
$$IF(ADDUTILS) 
#include "SPBUtils.h"  
$$ENDIF 
 
#endif   // _APP_DEFS_ 
 
 
/*  End of file: $$root$$.h  */