Browse CVS Repository
Contents of /enbanfukusyaya/EnbanFukusyaYa/DriveAccess/scan.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.8 -
( show annotations)
( download)
( as text)
Fri Nov 5 17:24:03 2010 UTC
(13 years, 5 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +3 -3 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
/* |
| 2 |
* @file scan.h |
| 3 |
* @brief 装置検索 |
| 4 |
* @author BananaJinn |
| 5 |
* @version $Id: scan.h,v 1.7 2006/03/21 14:06:22 bananajinn Exp $ |
| 6 |
* 円盤複写屋 |
| 7 |
* Copyright (C) 2004-2006 BananaJinn<banana@mxh.mesh.ne.jp>. |
| 8 |
*/ |
| 9 |
#ifndef __SCAN_H__ |
| 10 |
#define __SCAN_H__ |
| 11 |
|
| 12 |
#include "aspi.h" |
| 13 |
|
| 14 |
#define INQUIRY_BUFFSIZE 96 |
| 15 |
|
| 16 |
typedef struct { |
| 17 |
int hid, tid; |
| 18 |
BYTE inqdata[INQUIRY_BUFFSIZE]; |
| 19 |
} SCAN_t; |
| 20 |
|
| 21 |
#ifdef __cplusplus |
| 22 |
extern "C" { |
| 23 |
#endif |
| 24 |
|
| 25 |
SCAN_t *ScanDrive(BOOL bWriter); |
| 26 |
|
| 27 |
#ifdef __cplusplus |
| 28 |
} |
| 29 |
#endif |
| 30 |
|
| 31 |
|
| 32 |
#endif /* !__SCAN_H__ */ |
|