Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(667)

Unified Diff: sandbox/win/src/nt_internals.h

Issue 84063004: Restructure sandbox code to reduce dependencies pulled in by intercept code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cpu@ comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sandbox/win/src/nt_internals.h
diff --git a/sandbox/win/src/nt_internals.h b/sandbox/win/src/nt_internals.h
index 1423be4937db7a0214a4d113340a084655743665..02e01400338f8c3bf883e97b0be0bdd84c83aeb5 100644
--- a/sandbox/win/src/nt_internals.h
+++ b/sandbox/win/src/nt_internals.h
@@ -601,6 +601,11 @@ typedef size_t (__cdecl *strlenFunction)(
typedef size_t (__cdecl *wcslenFunction)(
IN const wchar_t* _Str);
+typedef void* (__cdecl *memcpyFunction)(
+ IN void *dest,
rvargas (doing something else) 2013/12/02 20:05:33 nit: * should be part of the type, not the variabl
robertshield 2013/12/03 18:53:51 Done.
+ IN const void *src,
+ IN size_t count);
+
typedef NTSTATUS (WINAPI *RtlAnsiStringToUnicodeStringFunction)(
IN OUT PUNICODE_STRING DestinationString,
IN PANSI_STRING SourceString,

Powered by Google App Engine
This is Rietveld 408576698