Changeset 1536
- Timestamp:
- 1/18/2010 3:04:33 AM (3 years ago)
- Location:
- branches/eraser6/CodeReview/Eraser.Util.Native
- Files:
-
- 1 edited
- 3 moved
-
Eraser.Util.Unlocker.vcproj (modified) (3 diffs)
-
OpenHandle.NameResolver.cpp (moved) (moved from branches/eraser6/CodeReview/Eraser.Util.Native/Unlocker.cpp)
-
OpenHandle.cpp (moved) (moved from branches/eraser6/CodeReview/Eraser.Util.Native/Eraser.Util.Native.cpp) (1 diff)
-
OpenHandle.h (moved) (moved from branches/eraser6/CodeReview/Eraser.Util.Native/Eraser.Util.Native.h) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/CodeReview/Eraser.Util.Native/Eraser.Util.Unlocker.vcproj
r1535 r1536 341 341 </File> 342 342 <File 343 RelativePath=".\Eraser.Util.Native.cpp"344 >345 </File>346 <File347 343 RelativePath=".\Main.cpp" 344 > 345 </File> 346 <File 347 RelativePath=".\OpenHandle.cpp" 348 > 349 </File> 350 <File 351 RelativePath=".\OpenHandle.NameResolver.cpp" 348 352 > 349 353 </File> … … 384 388 </FileConfiguration> 385 389 </File> 386 <File387 RelativePath=".\Unlocker.cpp"388 >389 </File>390 390 </Filter> 391 391 <Filter … … 395 395 > 396 396 <File 397 RelativePath=".\Eraser.Util.Native.h"398 >399 </File>400 <File401 397 RelativePath=".\NTApi.h" 398 > 399 </File> 400 <File 401 RelativePath=".\OpenHandle.h" 402 402 > 403 403 </File> -
branches/eraser6/CodeReview/Eraser.Util.Native/OpenHandle.cpp
r1535 r1536 21 21 22 22 #include "stdafx.h" 23 #include " Eraser.Util.Native.h"23 #include "OpenHandle.h" 24 24 25 25 namespace Eraser { 26 26 namespace Util { 27 ReadOnlyCollection<OpenHandle^>^ OpenHandle::Items::get()27 IList<OpenHandle^>^ OpenHandle::Items::get() 28 28 { 29 29 List<OpenHandle^>^ handles = gcnew List<OpenHandle^>(); -
branches/eraser6/CodeReview/Eraser.Util.Native/OpenHandle.h
r1535 r1536 49 49 public: 50 50 /// Retrieves all open handles on the system 51 static property ReadOnlyCollection<OpenHandle^>^ Items51 static property IList<OpenHandle^>^ Items 52 52 { 53 ReadOnlyCollection<OpenHandle^>^ get();53 IList<OpenHandle^>^ get(); 54 54 } 55 55 … … 74 74 } 75 75 76 private: 76 77 void set(String^ value) 77 78 { … … 88 89 } 89 90 91 private: 90 92 void set(int value) 91 93 {
Note: See TracChangeset
for help on using the changeset viewer.
