-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwlcomp.h
31 lines (22 loc) · 854 Bytes
/
wlcomp.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
#ifndef __WLCOMP__
#define __WLCOMP__
struct LDevice;
#ifdef __cplusplus
extern "C" {
#endif
struct LDevice* CreateLDevice(unsigned int Slot, unsigned int* err);
void ReleaseLDevice(struct LDevice* hIfc);
unsigned int PlataTest(struct LDevice* hIfc);
unsigned int OpenLDevice(struct LDevice* hIfc);
unsigned int CloseLDevice(struct LDevice* hIfc);
unsigned int InitStartLDevice(struct LDevice* hIfc);
unsigned int StartLDevice(struct LDevice* hIfc);
unsigned int StopLDevice(struct LDevice* hIfc);
unsigned int LoadBios(struct LDevice* hIfc, char *FileName);
unsigned int IoAsync(struct LDevice* hIfc, WASYNC_PAR* sp);
unsigned int GetSlotParam(struct LDevice* hIfc, SLOT_PAR* slPar);
unsigned int EnableCorrection(struct LDevice* hIfc, unsigned short Enabled);
#ifdef __cplusplus
}
#endif
#endif