Index: sandbox/win/src/nt_internals.h |
diff --git a/sandbox/win/src/nt_internals.h b/sandbox/win/src/nt_internals.h |
index 40b29c6beb3276415bf845b19deb9458bca08a21..ecf1c282d40dbe8c41b6f2b7968a34ea9672bd00 100644 |
--- a/sandbox/win/src/nt_internals.h |
+++ b/sandbox/win/src/nt_internals.h |
@@ -686,5 +686,20 @@ struct PROCESS_ACCESS_TOKEN { |
const unsigned int NtProcessInformationAccessToken = 9; |
+typedef struct _ALPC_PORT_ATTRIBUTES { |
+ ULONG flags; |
+ SECURITY_QUALITY_OF_SERVICE qos; |
+ SIZE_T max_message_length; |
+ SIZE_T memory_bandwidth; |
+ SIZE_T max_pool_usage; |
+ SIZE_T max_section_size; |
+ SIZE_T max_view_size; |
+ SIZE_T max_total_section_size; |
+ ULONG dup_object_types; |
+#ifdef _WIN64 |
+ ULONG reserved; |
+#endif |
+} ALPC_PORT_ATTRIBUTES, *PALPC_PORT_ATTRIBUTES; |
+ |
#endif // SANDBOX_WIN_SRC_NT_INTERNALS_H__ |