-
Notifications
You must be signed in to change notification settings - Fork 0
/
NifTexture.h
80 lines (59 loc) · 2.28 KB
/
NifTexture.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
/*===========================================================================
*
* File: NifTexture.H
* Author: Dave Humphrey (uesp@m0use.net)
* Created On: Saturday, 28 December, 2002
*
* Main header file for the NIFTEXTURE application.
*
*=========================================================================*/
#ifndef __NIFTEXTURE_H
#define __NIFTEXTURE_H
/*===========================================================================
*
* Begin Required Include Files
*
*=========================================================================*/
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h"
/*===========================================================================
* End of Required Include Files
*=========================================================================*/
/*===========================================================================
*
* Begin Class CNifTextureApp Definition
*
*=========================================================================*/
class CNifTextureApp : public CWinApp {
/*---------- Begin Protected Class Members -----------------------*/
protected:
/*--------- Begin Public Class Methods ---------------------------*/
public:
/* Class Constructor */
CNifTextureApp();
/* Get/set app browse path from registry */
void SetBrowsePath (const TCHAR* pPath);
CString GetBrowsePath (void);
/* ClassWizard generated virtual function overrides */
//{{AFX_VIRTUAL(CNifTextureApp)
public:
virtual BOOL InitInstance();
//}}AFX_VIRTUAL
//{{AFX_MSG(CNifTextureApp)
public:
afx_msg void OnAppAbout();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/*===========================================================================
* End of Class CNifTextureApp Definition
*=========================================================================*/
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
//}}AFX_INSERT_LOCATION
#endif
/*===========================================================================
* End of File Root.H
*=========================================================================*/