/camera/camlib

To get this branch, use:
bzr branch http://darksoft.org/webbzr/camera/camlib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// COMDLL.cpp : Defines the entry point for the DLL application.
//
// $Id: comdll_fg.h,v 1.2 2008-03-06 07:24:33 hofmann Exp $
//

#ifndef COMDLL_FG_H
#define COMDLL_FG_H

#define HANDLE int
#define DWORD unsigned long
#define BYTE unsigned char


DWORD clSerialRead_FG(HANDLE h, BYTE *buff, DWORD *dwLength, DWORD time_max);
DWORD clSerialWrite_FG(HANDLE h, BYTE *buff, DWORD *dwLength, DWORD time_max);
HANDLE clSerialInit_FG(int serialIndex, HANDLE *h);
int clSerialClose_FG(HANDLE h);


#endif // COMDLL_FG_H