blob: 2fe8f2a08584f374172bc67d0d561f124b28ef26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* PARALLAX.H
*
*
*
*/
#include "dongle.h"
#ifndef PARALLAX_H
#define PARALLAX_H
BOOLEAN PARALLAX_Init(UINT comBase, dongleCapabilities *caps, UINT *context);
VOID PARALLAX_Deinit(UINT comBase, UINT context);
BOOLEAN PARALLAX_SetSpeed(UINT comBase, UINT bitsPerSec, UINT context);
#endif PARALLAX_H
|