-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptdlg.h
More file actions
30 lines (22 loc) · 758 Bytes
/
Copy pathoptdlg.h
File metadata and controls
30 lines (22 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*====================================================================
* オプションダイアログ optdlg.h
*===================================================================*/
#ifndef ___OPTDLG_H
#define ___OPTDLG_H
#include <windows.h>
#include "filter.h"
#ifdef __cplusplus
extern "C" {
#endif
extern FILTER* optfp;
extern HWND hcb_logo; // コンボボックスのハンドル
extern HWND hoptdlg; // オプションダイアログのハンドル
// ダイアログプロシージャ
extern BOOL CALLBACK OptDlgProc(HWND hdlg, UINT msg, WPARAM wParam, LPARAM lParam);
// リストアイテム編集用関数
extern void InsertItem(HWND hdlg,int n,void *data);
extern void DeleteItem(HWND list,int num);
#ifdef __cplusplus
} // End of extern "C"
#endif
#endif