水無瀬の部屋 > Programming > sample > dumptext > mainbox.h |
---|
1: //*********************************************************
2: // プロジェクト: dumptext
3: // ファイル名: mainbox.h
4: //*********************************************************
5: #ifndef MAINBOX_HEAD_INCLUDED
6: #define MAINBOX_HEAD_INCLUDED
7:
8:
9: //*********************************************************
10: // ヘッダ の インクルード
11: //*********************************************************
12: #ifndef TOOLS_HEAD_INCLUDED // 冗長ガード
13: #include <tools.h>
14: #ifndef TOOLS_HEAD_INCLUDED // ガード名の検査
15: #error "? TOOLS_HEAD_INCLUDED"
16: #endif // #ifndef TOOLS_HEAD_INCLUDED
17: #endif // #ifndef TOOLS_HEAD_INCLUDED
18:
19:
20: //*********************************************************
21: // 構造体 の 宣言
22: //*********************************************************
23: // DUMPTEXT_t
24: typedef struct DUMPTEXT_tag
25: {
26: int start; // ダンプ開始アドレス
27: int stop; // ダンプ終了アドレス
28: char datafile[ MAX_PATH_BUF ]; // 入力ファイル名
29: char dumpfile[ MAX_PATH_BUF ]; // 出力ファイル名
30: } DUMPTEXT_t;
31:
32:
33: //*********************************************************
34: // 関数 の 宣言
35: //*********************************************************
36: #ifdef __cplusplus
37: extern "C" {
38: #endif
39:
40:
41: // mainbox.cpp
42: bool MainBox( DUMPTEXT_t *dt );
43:
44:
45: #ifdef __cplusplus
46: } // extern "C"
47: #endif
48:
49:
50: #endif // #ifndef MAINBOX_HEAD_INCLUDED
51:
52:
53: //** end **
54:
55:
56:
参照:
dumptext.cpp, mainbox.cpp
水無瀬の部屋 > sample > dumptext > mainbox.h |
---|
このページは cpp2web が出力しました。
水無瀬 優 postmaster@katsura-kotonoha.sakura.ne.jp
http://katsura-kotonoha.sakura.ne.jp/prog/code/dumptext/mainbox_h.shtml