forked from algebrato/PenguinSBIG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlpardrv.h
47 lines (32 loc) · 1005 Bytes
/
lpardrv.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
lpardrv.h - Local options for pardrv.h
*/
#ifndef _LPARDRV_
#define _LPARDRV_
#define STF_CLASS /* new stuff related to the STF-8300, STF-8050, etc. cameras */
#define ENV_WIN 1 /* Target for Windows environment */
#define ENV_WINVXD 2 /* SBIG Use Only, Win 9X VXD */
#define ENV_WINSYS 3 /* SBIG Use Only, Win NT SYS */
#define ENV_ESRVJK 4 /* SBIG Use Only, Ethernet Remote */
#define ENV_ESRVWIN 5 /* SBIG Use Only, Ethernet Remote */
#define ENV_MACOSX 6 /* SBIG Use Only, Mac OSX */
#define ENV_LINUX 7 /* SBIG Use Only, Linux */
#define ENV_NIOS 8 /* SBIG Use Only, Embedded NIOS */
#ifndef TARGET
#define TARGET ENV_LINUX /* Set for your target */
#endif
#if TARGET == ENV_MACOSX
#include <SBIGUDrv/sbigudrv.h>
#ifdef _DEBUG
#define _DEBUG 1
#endif
#else
#include "sbigudrv.h"
#endif
#if TARGET == ENV_LINUX
#include <libusb.h>
#ifdef _DEBUG
#define _DEBUG 1
#endif
#endif
#endif