Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-03-09 22:28:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-09 22:28:30 +0400
commit89a963fb7fdff543b77de790355b9dac3019bd33 (patch)
tree4e1d2245e20f8c21625e99d771776f66c233a0de /source/gameengine/VideoTexture/Common.h
parentde4bd55e01bc574c13977537ace1a0901dcfcaf0 (diff)
style cleanup: comment blocks
Diffstat (limited to 'source/gameengine/VideoTexture/Common.h')
-rw-r--r--source/gameengine/VideoTexture/Common.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/gameengine/VideoTexture/Common.h b/source/gameengine/VideoTexture/Common.h
index fe9632b02bb..e6e0ffa1ebc 100644
--- a/source/gameengine/VideoTexture/Common.h
+++ b/source/gameengine/VideoTexture/Common.h
@@ -28,31 +28,31 @@ http://www.gnu.org/copyleft/lesser.txt.
#define WINDOWS_LEAN_AND_MEAN
#endif
-#if !defined NULL
+#ifndef NULL
#define NULL 0
#endif
-#if !defined HRESULT
+#ifndef HRESULT
#define HRESULT long
#endif
-#if !defined DWORD
+#ifndef DWORD
#define DWORD unsigned long
#endif
-#if !defined S_OK
+#ifndef S_OK
#define S_OK ((HRESULT)0L)
#endif
-#if !defined BYTE
+#ifndef BYTE
#define BYTE unsigned char
#endif
-#if !defined WIN32
+#ifndef WIN32
#define Sleep(time) sleep(time)
#endif
-#if !defined FAILED
+#ifndef FAILED
#define FAILED(Status) ((HRESULT)(Status)<0)
#endif