Last change
on this file since 80 was
80,
checked in by Sam Hocevar, 14 years ago
|
- Adding the Golgotha source code. Not sure what's going to be interesting
in there, but since it's all public domain, there's certainly stuff to
pick up.
|
-
Property svn:keywords set to
Id
|
File size:
1.7 KB
|
Line | |
---|
1 | //-----------------------------------------------------------------------------
|
---|
2 | // ---------------------
|
---|
3 | // File ....: ViewFile.h
|
---|
4 | // ---------------------
|
---|
5 | // Author...: Gus J Grubba
|
---|
6 | // Date ....: September 1995
|
---|
7 | // O.S. ....: Windows NT 3.51
|
---|
8 | //
|
---|
9 | // History .: Nov, 02 1995 - Created
|
---|
10 | //
|
---|
11 | // This is the "View File" option in MAX's File menu.
|
---|
12 | //
|
---|
13 | //-----------------------------------------------------------------------------
|
---|
14 |
|
---|
15 | #ifndef _VIEWFINCLUDE_
|
---|
16 | #define _VIEWFINCLUDE_
|
---|
17 |
|
---|
18 | #ifndef VWFEXPORT
|
---|
19 | #define VWFEXPORT __declspec( dllimport )
|
---|
20 | #endif
|
---|
21 |
|
---|
22 | //-----------------------------------------------------------------------------
|
---|
23 | //-- Base Class Definition ---------------------------------------------------
|
---|
24 | //-----------------------------------------------------------------------------
|
---|
25 | // #> ViewFile
|
---|
26 | //
|
---|
27 |
|
---|
28 | class ViewFile {
|
---|
29 |
|
---|
30 | private:
|
---|
31 |
|
---|
32 | //-- Windows Specific -------------------------------------------------
|
---|
33 |
|
---|
34 | HWND hWnd;
|
---|
35 |
|
---|
36 | public:
|
---|
37 |
|
---|
38 | //-- Constructors/Destructors -----------------------------------------
|
---|
39 |
|
---|
40 | VWFEXPORT ViewFile ( );
|
---|
41 | VWFEXPORT ~ViewFile ( );
|
---|
42 |
|
---|
43 | //-- The Method -------------------------------------------------------
|
---|
44 | //
|
---|
45 |
|
---|
46 | VWFEXPORT void View ( HWND hWnd );
|
---|
47 |
|
---|
48 | };
|
---|
49 |
|
---|
50 | //-----------------------------------------------------------------------------
|
---|
51 | //-- Interface
|
---|
52 |
|
---|
53 | VWFEXPORT void *ViewFileCreate ( );
|
---|
54 | VWFEXPORT void ViewFileDestroy ( ViewFile *v);
|
---|
55 |
|
---|
56 | #endif
|
---|
57 |
|
---|
58 | //-- EOF: ViewFile.h ----------------------------------------------------------
|
---|
Note: See
TracBrowser
for help on using the repository browser.