Changeset 658
- Timestamp:
- Aug 24, 1999, 2:25:19 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
changelog (modified) (2 diffs)
-
include/win32type.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r656 r658 1 /* $Id: changelog,v 1.1 29 1999-08-24 11:45:27 phallerExp $ */1 /* $Id: changelog,v 1.130 1999-08-24 12:25:19 sandervl Exp $ */ 2 2 3 3 99-08-24: Patrick Haller <phaller@gmx.net> … … 7 7 - USER32\NEW: One mutex per type of generic object + mutex protection 8 8 of linked list access in win32 classes 9 - KERNEL32: Implemented VirtualQuery (not yet tested) 10 VirtualQueryEx calls VirtualQuery, VirtualProtectEx calls 11 VirtualProtect 12 NOTE: VirtualQueryEx & VirtualProtectEx can't handle addresses of other 13 processes 14 - KERNEL32: Added memory mapped file class (not hooked up to apis or 15 exception handler yet; just committing my preliminary code) 9 16 10 17 99-08-23: Sander van Leeuwen <sandervl@xs4all.nl> -
trunk/include/win32type.h
r368 r658 1 /* $Id: win32type.h,v 1.1 2 1999-07-22 19:10:50sandervl Exp $ */1 /* $Id: win32type.h,v 1.13 1999-08-24 12:22:48 sandervl Exp $ */ 2 2 3 3 #ifndef __WIN32TYPE_H__ … … 5 5 6 6 #include <odin.h> 7 8 #pragma pack(1) 7 9 8 10 #define NEAR … … 263 265 #endif 264 266 265 #endif 267 typedef struct _MEMORY_BASIC_INFORMATION 268 { 269 LPVOID BaseAddress; 270 LPVOID AllocationBase; 271 DWORD AllocationProtect; 272 DWORD RegionSize; 273 DWORD State; 274 DWORD Protect; 275 DWORD Type; 276 } MEMORY_BASIC_INFORMATION,*PMEMORY_BASIC_INFORMATION,*LPMEMORY_BASIC_INFORMATION; 277 278 #pragma pack() 279 280 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
