Browse CVS Repository
Contents of /enbanfukusyaya/EnbanFukusyaYa/DriveAccess/mkisofs.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.4 -
( show annotations)
( download)
( as text)
Tue Nov 9 15:32:27 2010 UTC
(13 years, 5 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +4 -2 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
/** |
| 2 |
* @file mkisofs.h |
| 3 |
* @brief mkisofsによるISOイメージ作成 |
| 4 |
* @auther BananaJinn |
| 5 |
* @version $Id: mkisofs.h,v 1.3 2010/11/05 17:24:03 bananajinn Exp $ |
| 6 |
* 円盤複写屋 |
| 7 |
* Copyright (C) 2004-2010 BananaJinn<banana@mxh.mesh.ne.jp>. |
| 8 |
*/ |
| 9 |
#ifndef __MKISOFS_H__ |
| 10 |
#define __MKISOFS_H__ |
| 11 |
|
| 12 |
#include "aspi.h" |
| 13 |
#include "osdepend.h" |
| 14 |
#if defined(WIN32) |
| 15 |
# include <windows.h> |
| 16 |
#endif |
| 17 |
|
| 18 |
typedef struct { |
| 19 |
BOOL started; /**< 開始済みかどうか */ |
| 20 |
OSD_PID fd_stdout; /**< 標準出力 */ |
| 21 |
OSD_PID fd_stderr; /**< 標準エラー出力 */ |
| 22 |
OSD_PID pid; /**< プロセスID */ |
| 23 |
BOOL video; /**< DVD-videoかどうか */ |
| 24 |
char *src_path; /**< ISO作成ルートパス */ |
| 25 |
char *volume; /**< ボリュームラベル */ |
| 26 |
char *error_message; /**< エラーメッセージ */ |
| 27 |
} MKISOFS; |
| 28 |
|
| 29 |
extern int MIFInitialize(MKISOFS *mif); |
| 30 |
extern int MIFFree(MKISOFS *mif); |
| 31 |
extern int MIFSetSrcPath(MKISOFS *mif, const char *src_path); |
| 32 |
extern DWORD MIFGetBlockCount(MKISOFS *mif); |
| 33 |
extern int MIFRead(MKISOFS *mif, BYTE *buff, DWORD len); |
| 34 |
extern const char *MIFGetErrorMessage(MKISOFS *mif); |
| 35 |
|
| 36 |
#endif /* !__MKISOFS_H__ */ |
|