-
Notifications
You must be signed in to change notification settings - Fork 0
/
NifTo3dsDlg.h
85 lines (64 loc) · 2.51 KB
/
NifTo3dsDlg.h
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*===========================================================================
*
* File: NifTo3dsDlg.H
* Author: Dave Humphrey ([email protected])
* Created On: Saturday, 06 December, 2003
*
* Definition of the CNifTo3dsDlg class.
*
*=========================================================================*/
#ifndef __NifTo3dsDlg_H
#define __NifTo3dsDlg_H
/*===========================================================================
*
* Begin Required Includes
*
*=========================================================================*/
#include "ConvertNif3ds.h"
/*===========================================================================
* End of Required Includes
*=========================================================================*/
/*===========================================================================
*
* Class CNifTo3dsDlg Definition
*
*=========================================================================*/
class CNifTo3dsDlg : public CDialog {
/*---------- Begin Protected Class Members ---------------------------*/
protected:
HICON m_hIcon;
/*---------- Begin Protected Class Methods ---------------------------*/
protected:
/*---------- Begin Public Class Methods ------------------------------*/
public:
/* Constructor/destructor */
CNifTo3dsDlg(CWnd* pParent = NULL);
/* Dialog Data */
//{{AFX_DATA(CNifTo3dsDlg)
enum { IDD = IDD_NIFTO3DS_DIALOG };
//}}AFX_DATA
/* ClassWizard generated virtual function overrides */
//{{AFX_VIRTUAL(CNifTo3dsDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX);
//}}AFX_VIRTUAL
/* Generated message map functions */
//{{AFX_MSG(CNifTo3dsDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnDestroy();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnConvertButton();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/*===========================================================================
* End of Class CNifTo3dsDlg Definition
*=========================================================================*/
//{{AFX_INSERT_LOCATION}}
//}}AFX_INSERT_LOCATION Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif
/*===========================================================================
* End of File NifTo3dsDlg.H
*=========================================================================*/