-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFA_dlg.h
More file actions
28 lines (24 loc) · 734 Bytes
/
FA_dlg.h
File metadata and controls
28 lines (24 loc) · 734 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
/*****************************************************************************
* File Descrip : FA Dlg Function Wrap
* Create Time :20160226
* Author :RedXu
*****************************************************************************/
#ifndef __FA_DLG__H__
#define __FA_DLG__H__
/**
* [Create Dlg Default VTable]
* @return [VTable]
*/
struct H3_Dlg_VTable* FA_DlgVTableCreate(void);
/**
* [Create Dlg]
* @param x [x]
* @param y [y]
* @param dx [width]
* @param dy [height]
* @param count [item count]
* @param vt [virtual table]
* @return [dlg]
*/
struct H3_Dlg* FA_DlgCreate(int x, int y, int dx, int dy, int count, struct H3_Dlg_VTable* vt);
#endif