Changeset 1710
- Timestamp:
- 1/28/2010 3:40:02 AM (3 years ago)
- Location:
- branches/eraser6/CodeReview/Eraser.Util
- Files:
-
- 1 deleted
- 2 edited
-
Eraser.Util.csproj (modified) (1 diff)
-
NTApi.cs (deleted)
-
NativeMethods/NtDll.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/CodeReview/Eraser.Util/Eraser.Util.csproj
r1709 r1710 91 91 <Compile Include="VolumeInfo.cs" /> 92 92 <Compile Include="NetApi.cs" /> 93 <Compile Include="NTApi.cs" />94 93 <Compile Include="Properties\AssemblyInfo.cs" /> 95 94 <Compile Include="UserApi.cs" /> -
branches/eraser6/CodeReview/Eraser.Util/NativeMethods/NtDll.cs
r1544 r1710 30 30 internal static partial class NativeMethods 31 31 { 32 /// <summary>33 /// Queries system parameters using the NT Native API.34 /// </summary>35 /// <param name="dwType">The type of information to retrieve.</param>36 /// <param name="dwData">The buffer to receive the information.</param>37 /// <param name="dwMaxSize">The size of the buffer.</param>38 /// <param name="dwDataSize">Receives the amount of data written to the39 /// buffer.</param>40 /// <returns>A system error code.</returns>41 [DllImport("NtDll.dll")]42 public static extern uint NtQuerySystemInformation(uint dwType, byte[] dwData,43 uint dwMaxSize, out uint dwDataSize);44 45 32 /// <summary> 46 33 /// The ZwQueryInformationFile routine returns various kinds of information
Note: See TracChangeset
for help on using the changeset viewer.
