Line | |
---|
1 | /*
|
---|
2 | * msvcrt.dll stdcall to cdecl forwarders
|
---|
3 | *
|
---|
4 | */
|
---|
5 |
|
---|
6 | #include <winbase.h>
|
---|
7 | #include "wine/port.h"
|
---|
8 |
|
---|
9 | #include "winternl.h"
|
---|
10 | #include "wine/exception.h"
|
---|
11 | #include "thread.h"
|
---|
12 | #include "msvcrt.h"
|
---|
13 |
|
---|
14 | HANDLE MSVCRT_GetCurrentThread(void)
|
---|
15 | {
|
---|
16 | return GetCurrentThread();
|
---|
17 | }
|
---|
18 |
|
---|
19 | DWORD MSVCRT_GetCurrentThreadId(void)
|
---|
20 | {
|
---|
21 | return GetCurrentThreadId();
|
---|
22 | }
|
---|
23 |
|
---|
24 | DWORD MSVCRT_GetCurrentProcessId(void)
|
---|
25 | {
|
---|
26 | return GetCurrentProcessId();
|
---|
27 | }
|
---|
28 |
|
---|
29 | DWORD MSVCRT_GetLogicalDrives(void)
|
---|
30 | {
|
---|
31 | return GetLogicalDrives();
|
---|
32 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.