1 /*
2 
3 lpardrv.h - Local options for pardrv.h
4 
5 */
6 #ifndef _LPARDRV_
7 #define _LPARDRV_
8 
9 #define ENV_WIN				1			/* Target for Windows environment */
10 #define ENV_WINVXD		2			/* SBIG Use Only, Win 9X VXD */
11 #define ENV_WINSYS		3			/* SBIG Use Only, Win NT SYS */
12 #define ENV_ESRVJK		4			/* SBIG Use Only, Ethernet Remote */
13 #define ENV_ESRVWIN		5			/* SBIG Use Only, Ethernet Remote */
14 #define ENV_MACOSX		6			/* SBIG Use Only, Mac OSX */
15 #define ENV_LINUX			7			/* SBIG Use Only, Linux */
16 #define ENV_NIOS	    8			/* SBIG Use Only, Embedded NIOS */
17 
18 #ifndef TARGET
19 #define TARGET			ENV_MACOSX		/* Set for your target */
20 #endif
21 
22 #if TARGET == ENV_MACOSX
23 
24 	#include <SBIGUDrv/sbigudrv.h>
25 	#ifdef _DEBUG
26 	#define _DEBUG		1
27 	#endif
28 
29 #else
30 
31 	#include "sbigudrv.h"
32 
33 #endif
34 
35 #if TARGET == ENV_LINUX
36 
37 	#include <libusb.h>
38 
39 	#ifdef _DEBUG
40 	#define _DEBUG 1
41 	#endif
42 
43 #endif
44 
45 #endif
46