http://bugs.winehq.org/show_bug.cgi?id=35027
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net Version|unspecified |1.7.7 Summary|unimplemented function |Euphoria needs |KERNEL32.dll.CreateProcessI |unimplemented function |nternalW |KERNEL32.dll.CreateProcessI | |nternalW
--- Comment #1 from Anastasius Focht focht@gmx.net 2013-12-01 10:16:17 CST --- Hello,
--- snip --- process tid prio (all id:s are in hex) 00000008 (D) D:.game\CLOCKUP\EUPHORIA\euphoria_sc.exe 00000009 0 <== --- snip ---
looks like "Euphoria" from "Clock Up" (http://entacom.org/clockup/) I spare you any further info ... definitely NSFW material - you don't want to know that.
Source: http://source.winehq.org/git/wine.git/blob/b6b9050d58d8baaea843c633f5968be90...
--- snip --- 256 # @ stub CreateProcessInternalA 257 # @ stub CreateProcessInternalW 258 # @ stub CreateProcessInternalWSecure --- snip ---
It seems this is an undocumented internal helper. Though the prototype is described in several blogs, similar to CreateProcessA/W() with additional "user token" in and out parameters:
--- snip --- BOOL WINAPI CreateProcessInternalW( HANDLE user_token, ... , PHANDLE new_token) --- snip ---
Regards