Changeset 4227 for trunk/src/win32k/test
- Timestamp:
- Sep 8, 2000, 11:34:12 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/test/fake.c
r4164 r4227 1 /* $Id: fake.c,v 1. 2 2000-09-02 21:08:20bird Exp $1 /* $Id: fake.c,v 1.3 2000-09-08 21:34:12 bird Exp $ 2 2 * 3 3 * Fake stubs for the ldr and kernel functions we imports or overloads. … … 313 313 314 314 return NO_ERROR; 315 } 316 317 318 /** 319 * Sets the VM flags for an executable object. 320 * @returns void 321 * @param pMTE Pointer to the module table entry. 322 * @param flObj LX Object flags. 323 * @param pflFlags1 Pointer to the flFlags1 of VMAllocMem (out). 324 * @param pflFlags2 Pointer to the flFlags2 of VMAllocMem (out). 325 */ 326 ULONG LDRCALL fakeldrSetVMflags( 327 PMTE pMTE, 328 ULONG flObj, 329 PULONG pflFlags1, 330 PULONG pflFlags2 331 ) 332 { 333 *pflFlags1 = 0; 334 *pflFlags2 = 0; 335 flObj = flObj; 336 pMTE = pMTE; 315 337 } 316 338
Note:
See TracChangeset
for help on using the changeset viewer.