1 #include <stubs.h> 2 3 #undef UNIMPLEMENTED 4 #define UNIMPLEMENTED __wine_spec_unimplemented_stub("msvcrt.dll", __FUNCTION__) 5 6 #ifdef _M_IX86 7 8 int MSVCRT__inp( 9 unsigned short port) 10 { 11 return _inp(port); 12 } 13 14 unsigned short MSVCRT__inpw( 15 unsigned short port) 16 { 17 return _inpw(port); 18 } 19 20 unsigned long MSVCRT__inpd( 21 unsigned short port) 22 { 23 return _inpd(port); 24 } 25 26 27 int MSVCRT__outp( 28 unsigned short port, 29 int databyte) 30 { 31 return _outp(port, databyte); 32 } 33 34 unsigned short MSVCRT__outpw( 35 unsigned short port, 36 unsigned short dataword) 37 { 38 return _outpw(port, dataword); 39 } 40 41 unsigned long MSVCRT__outpd( 42 unsigned short port, 43 unsigned long dataword) 44 { 45 return _outpd(port, dataword); 46 } 47 #endif // _M_IX86 48 49 size_t _heapused( size_t *pUsed, size_t *pCommit ) 50 { 51 UNIMPLEMENTED; 52 return( 0 ); 53 } 54 55 int _fileinfo = 0; 56 57 int _atodbl( 58 void * value, 59 char * str) 60 { 61 UNIMPLEMENTED; 62 return 0; 63 } 64 65 int _ismbbkprint( 66 unsigned int c) 67 { 68 UNIMPLEMENTED; 69 return 0; 70 } 71