Richard Boegli's CnC_Generals_Zero_Hour Fork WIP
This is documentation of Richard Boegil's Zero Hour Fork
 
Loading...
Searching...
No Matches
w3ddesc.h
Go to the documentation of this file.
1/*
2** Command & Conquer Generals Zero Hour(tm)
3** Copyright 2025 Electronic Arts Inc.
4**
5** This program is free software: you can redistribute it and/or modify
6** it under the terms of the GNU General Public License as published by
7** the Free Software Foundation, either version 3 of the License, or
8** (at your option) any later version.
9**
10** This program is distributed in the hope that it will be useful,
11** but WITHOUT ANY WARRANTY; without even the implied warranty of
12** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13** GNU General Public License for more details.
14**
15** You should have received a copy of the GNU General Public License
16** along with this program. If not, see <http://www.gnu.org/licenses/>.
17*/
18
19/* $Header: /Commando/Code/Tools/max2w3d/w3ddesc.h 3 3/04/99 1:57p Naty_h $ */
20/***********************************************************************************************
21 *** Confidential - Westwood Studios ***
22 ***********************************************************************************************
23 * *
24 * Project Name : Commando Tools - W3D export *
25 * *
26 * $Archive:: /Commando/Code/Tools/max2w3d/w3ddesc.h $*
27 * *
28 * $Author:: Naty_h $*
29 * *
30 * $Modtime:: 3/03/99 11:28a $*
31 * *
32 * $Revision:: 3 $*
33 * *
34 *---------------------------------------------------------------------------------------------*
35 * Functions: *
36 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
37
38#ifndef W3DDESC_H
39#define W3DDESC_H
40
41#include "always.h"
42#include <Max.h>
43
44/*****************************************************************************
45*
46* Class descriptors provide the system with information about the plug-in
47* classes in the DLL.
48*
49*****************************************************************************/
50#define W3D_EXPORTER_CLASS_ID Class_ID(0x54d412df, 0x41466ae8)
51
52class W3dClassDesc : public ClassDesc
53{
54public:
55 void * Create(BOOL);
56 int IsPublic();
57 const TCHAR * ClassName();
58 SClass_ID SuperClassID();
59 Class_ID ClassID();
60 const TCHAR * Category();
61};
62
63
64#endif
#define BOOL
Definition Wnd_File.h:57
SClass_ID SuperClassID()
Definition w3ddesc.cpp:114
Class_ID ClassID()
Definition w3ddesc.cpp:135
void * Create(BOOL)
Definition w3ddesc.cpp:58
const TCHAR * ClassName()
Definition w3ddesc.cpp:97
const TCHAR * Category()
Definition w3ddesc.cpp:152
int IsPublic()
Definition w3ddesc.cpp:77