ReactOS 0.4.15-dev-7918-g2a2556c
stubs.c
Go to the documentation of this file.
1#include <windef.h>
2#include <stubs.h>
3
4#undef UNIMPLEMENTED
5#define UNIMPLEMENTED __wine_spec_unimplemented_stub("msvcrt.dll", __FUNCTION__)
6
7#ifdef _M_IX86
8
9int MSVCRT__inp(
10 unsigned short port)
11{
12 return _inp(port);
13}
14
15unsigned short MSVCRT__inpw(
16 unsigned short port)
17{
18 return _inpw(port);
19}
20
21unsigned long MSVCRT__inpd(
22 unsigned short port)
23{
24 return _inpd(port);
25}
26
27
28int MSVCRT__outp(
29 unsigned short port,
30 int databyte)
31{
32 return _outp(port, databyte);
33}
34
35unsigned short MSVCRT__outpw(
36 unsigned short port,
37 unsigned short dataword)
38{
39 return _outpw(port, dataword);
40}
41
42unsigned long MSVCRT__outpd(
43 unsigned short port,
44 unsigned long dataword)
45{
46 return _outpd(port, dataword);
47}
48#endif // _M_IX86
49
50size_t _heapused( size_t *pUsed, size_t *pCommit )
51{
53 return( 0 );
54}
55
56int _fileinfo = 0;
57
59 void * value,
60 char * str)
61{
63 return 0;
64}
65
67 unsigned int c)
68{
70 return 0;
71}
#define UNIMPLEMENTED
Definition: debug.h:115
int _ismbbkprint(unsigned int c)
Definition: stubs.c:38
int _fileinfo
Definition: stubs.c:14
int _atodbl(void *value, char *str)
Definition: stubs.c:30
size_t _heapused(size_t *pUsed, size_t *pCommit)
Definition: stubs.c:45
USHORT port
Definition: uri.c:228
const GLubyte * c
Definition: glext.h:8905
__INTRIN_INLINE unsigned long __cdecl _inpd(unsigned short Port)
Definition: intrin_x86.h:1618
__INTRIN_INLINE unsigned long __cdecl _outpd(unsigned short Port, unsigned long dataword)
Definition: intrin_x86.h:1635
__INTRIN_INLINE int __cdecl _outp(unsigned short Port, int databyte)
Definition: intrin_x86.h:1623
__INTRIN_INLINE unsigned short __cdecl _inpw(unsigned short Port)
Definition: intrin_x86.h:1613
__INTRIN_INLINE unsigned short __cdecl _outpw(unsigned short Port, unsigned short dataword)
Definition: intrin_x86.h:1629
__INTRIN_INLINE int __cdecl _inp(unsigned short Port)
Definition: intrin_x86.h:1608
const WCHAR * str
Definition: pdh_main.c:94