From 7028cbe09c688437910a25623098762bf0fa592d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:28:34 +1000 Subject: Move Irrlicht to src/others. --- .../irrlicht-1.8.1/doc/html/irr_types_8h.html | 286 +++++++++++++++++++++ 1 file changed, 286 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/irr_types_8h.html (limited to 'src/others/irrlicht-1.8.1/doc/html/irr_types_8h.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/irr_types_8h.html b/src/others/irrlicht-1.8.1/doc/html/irr_types_8h.html new file mode 100644 index 0000000..9a7d058 --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/irr_types_8h.html @@ -0,0 +1,286 @@ + + + + +Irrlicht 3D Engine: irrTypes.h File Reference + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+ +
+
irrTypes.h File Reference
+
+
+
#include "IrrCompileConfig.h"
+#include <wchar.h>
+
+

Go to the source code of this file.

+

+Namespaces

+ +

+Defines

+ +

+Typedefs

+ +

Define Documentation

+ + + +
+
+ + + + +
#define _IRR_DEPRECATED_
+
+
+ +

Defines a deprecated macro which generates a warning at compile time.

+

The usage is simple For typedef: typedef _IRR_DEPRECATED_ int test1; For classes/structs: class _IRR_DEPRECATED_ test2 { ... }; For methods: class test3 { _IRR_DEPRECATED_ virtual void foo() {} }; For functions: template<class T> _IRR_DEPRECATED_ void test4(void) {}

+ +

Definition at line 195 of file irrTypes.h.

+ +
+
+ +
+
+ + + + +
#define _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX
+
+ +
+ +
+
+ + + + + + + + +
#define _IRR_TEXT( X)   X
+
+
+ +

Definition at line 159 of file irrTypes.h.

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#define MAKE_IRR_ID( c0,
 c1,
 c2,
 c3 
)
+
+
+Value:
((irr::u32)(irr::u8)(c0) | ((irr::u32)(irr::u8)(c1) << 8) | \
+        ((irr::u32)(irr::u8)(c2) << 16) | ((irr::u32)(irr::u8)(c3) << 24 ))
+
+

ignore VC8 warning deprecated

+

The microsoft compiler creates four CC codes used in Irrlicht for simple ids some compilers can create those by directly writing the code like 'code', but some generate warnings so we use this macro here

+ +

Definition at line 241 of file irrTypes.h.

+ +
+
+
+
+ + + + + -- cgit v1.1