| 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 #include "sandbox/win/tests/common/test_utils.h" | 5 #include "sandbox/win/tests/common/test_utils.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 7 #include <winioctl.h> | 8 #include <winioctl.h> |
| 8 | 9 |
| 9 typedef struct _REPARSE_DATA_BUFFER { | 10 typedef struct _REPARSE_DATA_BUFFER { |
| 10 ULONG ReparseTag; | 11 ULONG ReparseTag; |
| 11 USHORT ReparseDataLength; | 12 USHORT ReparseDataLength; |
| 12 USHORT Reserved; | 13 USHORT Reserved; |
| 13 union { | 14 union { |
| 14 struct { | 15 struct { |
| 15 USHORT SubstituteNameOffset; | 16 USHORT SubstituteNameOffset; |
| 16 USHORT SubstituteNameLength; | 17 USHORT SubstituteNameLength; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 DWORD returned; | 64 DWORD returned; |
| 64 REPARSE_DATA_BUFFER data = {0}; | 65 REPARSE_DATA_BUFFER data = {0}; |
| 65 data.ReparseTag = 0xa0000003; | 66 data.ReparseTag = 0xa0000003; |
| 66 if (!DeviceIoControl(source, FSCTL_DELETE_REPARSE_POINT, &data, 8, NULL, 0, | 67 if (!DeviceIoControl(source, FSCTL_DELETE_REPARSE_POINT, &data, 8, NULL, 0, |
| 67 &returned, NULL)) { | 68 &returned, NULL)) { |
| 68 return false; | 69 return false; |
| 69 } | 70 } |
| 70 | 71 |
| 71 return true; | 72 return true; |
| 72 } | 73 } |
| OLD | NEW |