| Index: sandbox/win/src/interceptors_64.h
|
| diff --git a/sandbox/win/src/interceptors_64.h b/sandbox/win/src/interceptors_64.h
|
| index ef2c10d412c3adbd02f8c04aae34f5193fa5171c..1237125eebd8ed0527e99cf80c763437555bca6c 100644
|
| --- a/sandbox/win/src/interceptors_64.h
|
| +++ b/sandbox/win/src/interceptors_64.h
|
| @@ -163,6 +163,20 @@ SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenEvent64(
|
| PHANDLE event_handle, ACCESS_MASK desired_access,
|
| POBJECT_ATTRIBUTES object_attributes);
|
|
|
| +// -----------------------------------------------------------------------
|
| +// Interceptors handled by the process mitigations win32k lockdown code.
|
| +
|
| +// Interceptor for the GdiDllInitialize function.
|
| +SANDBOX_INTERCEPT BOOL WINAPI TargetGdiDllInitialize64(
|
| + HANDLE dll,
|
| + DWORD reason);
|
| +
|
| +// Interceptor for the GetStockObject function.
|
| +SANDBOX_INTERCEPT HGDIOBJ WINAPI TargetGetStockObject64(int object);
|
| +
|
| +// Interceptor for the RegisterClassW function.
|
| +SANDBOX_INTERCEPT ATOM WINAPI TargetRegisterClassW64(const WNDCLASS* wnd_class);
|
| +
|
| } // extern "C"
|
|
|
| } // namespace sandbox
|
|
|