OLD | NEW |
1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SANDBOX_SRC_WIN_UTILS_H_ | 5 #ifndef SANDBOX_SRC_WIN_UTILS_H_ |
6 #define SANDBOX_SRC_WIN_UTILS_H_ | 6 #define SANDBOX_SRC_WIN_UTILS_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 | 13 |
14 namespace sandbox { | 14 namespace sandbox { |
15 | 15 |
16 // Prefix for path used by NT calls. | 16 // Prefix for path used by NT calls. |
17 const wchar_t kNTPrefix[] = L"\\??\\"; | 17 const wchar_t kNTPrefix[] = L"\\??\\"; |
18 const size_t kNTPrefixLen = arraysize(kNTPrefix) - 1; | 18 const size_t kNTPrefixLen = arraysize(kNTPrefix) - 1; |
19 | 19 |
20 const wchar_t kNTObjManPrefix[] = L"\\Device\\"; | 20 const wchar_t kNTDevicePrefix[] = L"\\Device\\"; |
21 const size_t kNTObjManPrefixLen = arraysize(kNTObjManPrefix) - 1; | 21 const size_t kNTDevicePrefixLen = arraysize(kNTDevicePrefix) - 1; |
22 | 22 |
23 // Automatically acquires and releases a lock when the object is | 23 // Automatically acquires and releases a lock when the object is |
24 // is destroyed. | 24 // is destroyed. |
25 class AutoLock { | 25 class AutoLock { |
26 public: | 26 public: |
27 // Acquires the lock. | 27 // Acquires the lock. |
28 explicit AutoLock(CRITICAL_SECTION *lock) : lock_(lock) { | 28 explicit AutoLock(CRITICAL_SECTION *lock) : lock_(lock) { |
29 ::EnterCriticalSection(lock); | 29 ::EnterCriticalSection(lock); |
30 }; | 30 }; |
31 | 31 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 // Returns true if the provided path points to a pipe. | 108 // Returns true if the provided path points to a pipe. |
109 bool IsPipe(const base::string16& path); | 109 bool IsPipe(const base::string16& path); |
110 | 110 |
111 } // namespace sandbox | 111 } // namespace sandbox |
112 | 112 |
113 // Resolves a function name in NTDLL to a function pointer. The second parameter | 113 // Resolves a function name in NTDLL to a function pointer. The second parameter |
114 // is a pointer to the function pointer. | 114 // is a pointer to the function pointer. |
115 void ResolveNTFunctionPtr(const char* name, void* ptr); | 115 void ResolveNTFunctionPtr(const char* name, void* ptr); |
116 | 116 |
117 #endif // SANDBOX_SRC_WIN_UTILS_H_ | 117 #endif // SANDBOX_SRC_WIN_UTILS_H_ |
OLD | NEW |