gvg@svn.reactos.com wrote:
/me loves Raymond Modified: trunk/reactos/lib/kernel32/process/create.c
*Modified: trunk/reactos/lib/kernel32/process/create.c* --- trunk/reactos/lib/kernel32/process/create.c 2005-12-19 15:51:57 UTC (rev 20272) +++ trunk/reactos/lib/kernel32/process/create.c 2005-12-19 17:58:17 UTC (rev 20273) @@ -668,6 +668,11 @@ SIZE_T EnvSize = 0; BOOL Ret = FALSE;
/* FIXME should process
* HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options* key (see http://blogs.msdn.com/oldnewthing/archive/2005/12/19/505449.aspx)*/DPRINT("CreateProcessW: lpApplicationName: %S lpCommandLine: %S" " lpEnvironment: %p lpCurrentDirectory: %S dwCreationFlags: %lx\n", lpApplicationName, lpCommandLine, lpEnvironment, lpCurrentDirectory,
Parts of this key are already processed in LoadImageFileExecutionOptions (ntdll\ldr\startup.c).
- Hartmut
From: Hartmut Birr
gvg@svn.reactos.com wrote:
- /* FIXME should process
* HKLM\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Image File Execution Options
* key (seehttp://blogs.msdn.com/oldnewthing/archive/2005/12/19/505449.aspx)
*/Parts of this key are already processed in LoadImageFileExecutionOptions (ntdll\ldr\startup.c).
Cool, didn't know that.
GvG