Browse CVS Repository
Contents of /enbanfukusyaya/EnbanFukusyaYa/DriveAccess/cmdlog.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.10 -
( show annotations)
( download)
( as text)
Mon Nov 1 14:34:11 2010 UTC
(13 years, 5 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.9: +4 -4 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
/** |
| 2 |
* @file cmdlog.h |
| 3 |
* @brief コマンドログ |
| 4 |
* @author BananaJinn |
| 5 |
* @version $Id: cmdlog.h,v 1.9 2006/03/21 14:06:22 bananajinn Exp $ |
| 6 |
* 円盤複写屋 |
| 7 |
* Copyright (C) 2004-2006 BananaJinn<banana@mxh.mesh.ne.jp>. |
| 8 |
*/ |
| 9 |
#ifndef __CMDLOG_H__ |
| 10 |
#define __CMDLOG_H__ |
| 11 |
|
| 12 |
#ifdef __cplusplus |
| 13 |
extern "C" { |
| 14 |
#endif |
| 15 |
|
| 16 |
extern int CreateLog(CMDDRIVE *pReader, CMDDRIVE *pWriter, int nWriter); |
| 17 |
|
| 18 |
extern void CmdLog(CMDDRIVE *drive, BYTE *cdb, DWORD buflen, BYTE reqflag, |
| 19 |
int retcode); |
| 20 |
|
| 21 |
extern int CmdLogInit(CMDDRIVE *drive, int cmdlog_size); |
| 22 |
|
| 23 |
extern void CmdLogFree(CMDDRIVE *drive); |
| 24 |
|
| 25 |
#ifdef __cplusplus |
| 26 |
} |
| 27 |
#endif |
| 28 |
|
| 29 |
#endif /* !__CMDLOG_H__ */ |
|