Changeset 2550 for trunk/src/win32k/ldr/myldrOpenNewExe.cpp
- Timestamp:
- Jan 28, 2000, 4:28:43 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/ldr/myldrOpenNewExe.cpp
r847 r2550 1 /* $Id: myldrOpenNewExe.cpp,v 1.2 2000-01-28 15:28:43 bird Exp $ 2 * 3 * Obsolete 4 * 5 * Copyright (c) 1998 knut st. osmundsen 6 * 7 * Project Odin Software License can be found in LICENSE.TXT 8 * 9 */ 1 10 #include <ldr.h> 2 11 3 12 int LDRCALL myldrOpenNewExe(PCHAR pszName, USHORT lenName, ULONG p3, ULONG p4) 4 13 { 5 6 14 char szName[CCHMAXPATH]; 15 int i; 7 16 8 9 10 17 for (i = 0; i < lenName; i++) 18 szName[i] = pszName[i]; 19 szName[i] = '\0'; 11 20 12 // 21 // kernel_printf(("_ldrOpenNewExe: pszName(p1):%s lenName(p2):0x%x param3:0x%x param4:0x%x", __StackToFlat(szName), lenName, p3, p4)); 13 22 14 23 return _ldrOpenNewExe(pszName, lenName, p3, p4); 15 24 } 16 25
Note:
See TracChangeset
for help on using the changeset viewer.