Browse CVS Repository
Contents of /enbanfukusyaya/EnbanKensa/common/scan.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.5 -
( show annotations)
( download)
( as text)
Sun Dec 11 15:25:30 2005 UTC
(18 years, 4 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +31 -31 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
/** |
| 2 |
* 円盤複写屋 - EnbanKensa |
| 3 |
* Copyright (C) 2005 Kagetani Hideto |
| 4 |
* scan.h - 光ディスク系ドライブ検索定義 |
| 5 |
* $Date: 2005/12/11 15:21:45 $ |
| 6 |
* $Revision: 1.4 $ |
| 7 |
*/ |
| 8 |
#ifndef __SCAN_H__ |
| 9 |
#define __SCAN_H__ |
| 10 |
|
| 11 |
#include "aspi.h" |
| 12 |
|
| 13 |
#define INQUIRY_BUFFSIZE 96 |
| 14 |
|
| 15 |
typedef struct { |
| 16 |
int hid, tid; |
| 17 |
BYTE inqdata[INQUIRY_BUFFSIZE]; |
| 18 |
} SCAN_t; |
| 19 |
|
| 20 |
#ifdef __cplusplus |
| 21 |
extern "C" { |
| 22 |
#endif |
| 23 |
|
| 24 |
SCAN_t *ScanDrive(BOOL bWriter); |
| 25 |
|
| 26 |
#ifdef __cplusplus |
| 27 |
} |
| 28 |
#endif |
| 29 |
|
| 30 |
|
| 31 |
#endif /* !__SCAN_H__ */ |
|