summaryrefslogtreecommitdiff
path: root/ninja/src/win32port.h
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
committerZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
commit679147eead574d186ebf3069647b4c23e8ccace6 (patch)
treefc247a0ac8ff119f7c8550879ebb6d3dd8d1ff69 /ninja/src/win32port.h
downloadqtwebengine-chromium-679147eead574d186ebf3069647b4c23e8ccace6.tar.gz
Initial import.
Diffstat (limited to 'ninja/src/win32port.h')
-rw-r--r--ninja/src/win32port.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/ninja/src/win32port.h b/ninja/src/win32port.h
new file mode 100644
index 00000000000..ce3c9498e5d
--- /dev/null
+++ b/ninja/src/win32port.h
@@ -0,0 +1,31 @@
+// Copyright 2012 Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#ifndef NINJA_WIN32PORT_H_
+#define NINJA_WIN32PORT_H_
+
+typedef signed short int16_t;
+typedef unsigned short uint16_t;
+/// A 64-bit integer type
+typedef signed long long int64_t;
+typedef unsigned long long uint64_t;
+
+// printf format specifier for uint64_t, from C99.
+#ifndef PRIu64
+#define PRIu64 "I64u"
+#define PRIx64 "I64x"
+#endif
+
+#endif // NINJA_WIN32PORT_H_
+