/camera/camlib

To get this branch, use:
bzr branch http://darksoft.org/webbzr/camera/camlib

« back to all changes in this revision

Viewing changes to com_fg/comdll_fg.h

  • Committer: Suren A. Chilingaryan
  • Date: 2011-02-13 01:33:37 UTC
  • Revision ID: csa@dside.dyndns.org-20110213013337-ibm4w4n5a3hu4k7u
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// COMDLL.cpp : Defines the entry point for the DLL application.
 
2
//
 
3
// $Id: comdll_fg.h,v 1.2 2008-03-06 07:24:33 hofmann Exp $
 
4
//
 
5
 
 
6
#ifndef COMDLL_FG_H
 
7
#define COMDLL_FG_H
 
8
 
 
9
#define HANDLE int
 
10
#define DWORD unsigned long
 
11
#define BYTE unsigned char
 
12
 
 
13
 
 
14
DWORD clSerialRead_FG(HANDLE h, BYTE *buff, DWORD *dwLength, DWORD time_max);
 
15
DWORD clSerialWrite_FG(HANDLE h, BYTE *buff, DWORD *dwLength, DWORD time_max);
 
16
HANDLE clSerialInit_FG(int serialIndex, HANDLE *h);
 
17
int clSerialClose_FG(HANDLE h);
 
18
 
 
19
 
 
20
#endif // COMDLL_FG_H