水無瀬の部屋 > Programming > sample > goddess > goddess.h |
---|
1: //*********************************************************
2: // プロジェクト: goddess
3: // ファイル名: goddess.h
4: //*********************************************************
5: #ifndef GODDESS_HEAD_INCLUDED
6: #define GODDESS_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:
24:
25: //*********************************************************
26: // 構造体 の 宣言
27: //*********************************************************
28: typedef struct WALLPAPAER_tag
29: {
30: char Style[10];
31: char Tiling[10];
32: char FileName[ MAX_PATH_BUF ];
33: }WALLPAPAER_t;
34:
35:
36: //*********************************************************
37: // 関数 の 宣言
38: //*********************************************************
39: #ifdef __cplusplus
40: extern "C" {
41: #endif
42:
43:
44: // goddess.cpp
45: int ApplicationMainProc( HINSTANCE hInstance, int argc, char **argv );
46:
47: void RegSetWallPaperMode( HKEY hKey, WALLPAPAER_t *pwp );
48: void RegGetWallPaperInfo( HKEY hKey, WALLPAPAER_t *pwp );
49: bool SetWallPaperFileEx( const char *filename, UINT uFlags, const char *plugin );
50: bool ConvertToBitmap( const char *bmpname, const char *filename, const char *plugin );
51:
52:
53: #ifdef __cplusplus
54: } // extern "C"
55: #endif
56:
57:
58: #endif // #ifndef GODDESS_HEAD_INCLUDED
59:
60:
61: //** end **
62:
63:
64:
参照:
convbmp.cpp, goddess.cpp, main.cpp, setwall.cpp, usespi.cpp
水無瀬の部屋 > sample > goddess > goddess.h |
---|
このページは cpp2web が出力しました。
水無瀬 優 postmaster@katsura-kotonoha.sakura.ne.jp
http://katsura-kotonoha.sakura.ne.jp/prog/code/goddess/goddess_h.shtml