source: trunk/src/msvcrt/forwarders.c@ 10005

Last change on this file since 10005 was 10005, checked in by sandervl, 22 years ago

PF: MSVCRT update

File size: 475 bytes
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
14HANDLE MSVCRT_GetCurrentThread(void)
15{
16 return GetCurrentThread();
17}
18
19DWORD MSVCRT_GetCurrentThreadId(void)
20{
21 return GetCurrentThreadId();
22}
23
24DWORD MSVCRT_GetCurrentProcessId(void)
25{
26 return GetCurrentProcessId();
27}
28
29DWORD MSVCRT_GetLogicalDrives(void)
30{
31 return GetLogicalDrives();
32}
Note: See TracBrowser for help on using the repository browser.