source: GTP/trunk/App/Demos/Geom/Shark3D/src/drv_d3d9_module.h @ 2236

Revision 2236, 1.5 KB checked in by gumbau, 17 years ago (diff)
Line 
1///////////////////////////////////////////////////////////////////////////////
2//
3//      ##  ######
4//       ######  ###
5//  ## ###############        Shark 3D Engine (www.shark3d.com)
6//   ########## # # #
7//    ########                Copyright (c) 1996-2006 Spinor GmbH.
8//   ######### # # #          All rights reserved.
9//  ##   ##########
10//      ##
11//
12///////////////////////////////////////////////////////////////////////////////
13
14//@cpp
15#ifndef S3D_DRV_D3D9_MODULE_H
16#define S3D_DRV_D3D9_MODULE_H
17
18#include "drv/interf/drv_gfx.h"
19#include "comp/core/comp_resmgr.h"
20#include "comp/core/comp_module.h"
21#include "comp/core/comp_setup.h"
22
23///////////////////////////////////////////////////////////////////////////////
24
25//@
26class s3d_CDrvD3d9ModuleSuppl
27        : public s3d_CCompSuppl
28{
29public:
30    //@
31    s3d_CCompObjPtr SupplObj(
32            s3d_CUtilMsgHandler *MsgHandler, s3d_CUtilStr_cr Ctx,
33            s3d_CUtilStr_cr Ident, s3d_CUtilStr_cr Version);
34};
35
36//@
37class s3d_CDrvD3d9ModuleCover: public s3d_CCompModuleCover
38{
39public:
40    //@
41    s3d_CUtilStr GetName() const;
42
43    //@
44    s3d_CUtilStr GetAbout() const;
45
46    //@
47    s3d_CCompSupplPtr CreateSuppl(
48            s3d_CUtilMsgHandler *MsgHandler, s3d_CUtilStr_cr Info,
49            const s3d_CUtilSnkChunk *Param) const;
50};
51
52S3D_COMP_MODULE_ENTRANCE_DECL_STD(s3d_ModuleEntrance_drv_d3d9);
53
54///////////////////////////////////////////////////////////////////////////////
55
56#endif
Note: See TracBrowser for help on using the repository browser.