Index: src/trusted/platform/win/nacl_process_types.h |
diff --git a/src/trusted/platform/win/nacl_process_types.h b/src/trusted/platform/win/nacl_process_types.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6f587f4b17099585d0e24825a21decad355930c1 |
--- /dev/null |
+++ b/src/trusted/platform/win/nacl_process_types.h |
@@ -0,0 +1,26 @@ |
+/* |
+ * Copyright 2012 The Native Client Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can |
+ * be found in the LICENSE file. |
+ */ |
+ |
+/* |
+ * NaCl Server Runtime process implementation layer. |
+ */ |
+ |
+#ifndef NATIVE_CLIENT_SRC_TRUSTED_PLATFORM_WIN_NACL_PROCESS_TYPES_H_ |
+#define NATIVE_CLIENT_SRC_TRUSTED_PLATFORM_WIN_NACL_PROCESS_TYPES_H_ |
+ |
+#include <windows.h> |
+ |
+#include "native_client/src/include/nacl_base.h" |
+ |
+EXTERN_C_BEGIN |
+ |
+struct NaClProcess { |
+ HANDLE handle; |
+}; |
+ |
+EXTERN_C_END |
+ |
+#endif /* NATIVE_CLIENT_SRC_TRUSTED_PLATFORM_WIN_NACL_PROCESS_TYPES_H_ */ |