29 lines
		
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| /*! \file PFExport.h
 | |
|     \brief defines preprocessor switch for PF.dll
 | |
| 				 and client application
 | |
| */
 | |
| /**********************************************************************
 | |
|  *<
 | |
| 	CREATED BY: Oleg Bayborodin
 | |
| 
 | |
| 	HISTORY: created 9-28-01
 | |
| 
 | |
|  *>	Copyright (c) 2001, All Rights Reserved.
 | |
|  **********************************************************************/
 | |
| 
 | |
| #ifndef _PFEXPORT_H_
 | |
| #define _PFEXPORT_H_
 | |
| 
 | |
| 
 | |
| 
 | |
| #ifndef PF_EXPORTS
 | |
| #define PFExport	__declspec( dllimport )
 | |
| #else
 | |
| #define PFExport	__declspec( dllexport )
 | |
| #endif
 | |
| 
 | |
| 
 | |
| 
 | |
| #endif // _PFEXPORT_H_
 | |
| 
 | 
