blob: 5855a0a95849fe30b0373c0f29c8b4cf8a5d7edf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef COMMON_FUNCTIONS_H
#define COMMON_FUNCTIONS_H
extern int skipV33check;
extern int vid,pid;
extern int DeviceDetected;
static const int new_vid=0x1209,new_pid=0x5432;
static const int old_vid=0x04D8,old_pid=0x0100;
#if !defined _WIN32 && !defined __CYGWIN__ //Linux
extern char path[512];
#endif
#ifdef OPGUI
extern GtkWidget* b_V33check;
#endif
extern char str[4096];
void ProgID(void);
int CheckS1(void);
#endif // COMMON_FUNCTIONS_H
|