mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
318 B
20 lines
318 B
/*
|
|
* 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
|
|
|
|
|
|
|