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

Revision 2236, 1.2 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
16#ifndef S3D_DRV_D3D9_PUBLIC_H
17#define S3D_DRV_D3D9_PUBLIC_H
18
19#include "general/general_env.h"
20#include "sys/core/sys_libstd.h"
21
22#ifdef S3D_GENERAL_PLATFORM_WIN32
23#pragma warning(disable: 4273 4049 4660 4231 4251)
24#pragma warning(error: 4661)
25#endif
26
27///////////////////////////////////////////////////////////////////////////////
28
29#ifdef S3D_DRV_D3D9_EXPORTS
30#define S3D_DRV_D3D9_PUBLIC_DECL S3D_SYS_LIBSTD_DECL_EXPORT
31#define S3D_DRV_D3D9_PUBLIC_TEMPL  S3D_SYS_LIBSTD_TEMPL_EXPORT
32#else
33#define S3D_DRV_D3D9_PUBLIC_DECL S3D_SYS_LIBSTD_DECL_IMPORT
34#define S3D_DRV_D3D9_PUBLIC_TEMPL S3D_SYS_LIBSTD_TEMPL_IMPORT
35#endif
36
37///////////////////////////////////////////////////////////////////////////////
38
39#endif
Note: See TracBrowser for help on using the repository browser.