| * Copyright 1995 Martin von Loewis |
| /* This file contains only wrappers to existing Wine functions or trivial |
| stubs. 'Real' implementations go into context specific files */ |
| /*********************************************************************** |
| * GetCommandLineA (KERNEL32.161) |
| LPSTR GetCommandLineA(void) |
| /*********************************************************************** |
| * GetCurrentThreadId (KERNEL32.200) |
| int GetCurrentThreadId(void) |
| /*********************************************************************** |
| * GetEnvironmentStrings (KERNEL32.210) |
| LPSTR GetEnvironmentStrings(void) |
| /*********************************************************************** |
| * GetStdHandle (KERNEL32.276) |
| HANDLE GetStdHandle(DWORD nStdHandle) |
| case -10/*STD_INPUT_HANDLE*/:return 0; |
| case -11/*STD_OUTPUT_HANDLE*/:return 1; |
| case -12/*STD_ERROR_HANDLE*/:return 2; |
| /*********************************************************************** |
| * GetThreadContext (KERNEL32.294) |
| BOOL GetThreadContext(HANDLE hThread, void *lpContext) |