1 #include <windef.h> 2 #include <stubs.h> 3 4 #undef UNIMPLEMENTED 5 #define UNIMPLEMENTED __wine_spec_unimplemented_stub("msvcrt.dll", __FUNCTION__) 6 7 int _atodbl( 8 void * value, 9 char * str) 10 { 11 UNIMPLEMENTED; 12 return 0; 13 } 14 15 int _ismbbkprint( 16 unsigned int c) 17 { 18 UNIMPLEMENTED; 19 return 0; 20 } 21 22 size_t _heapused( size_t *pUsed, size_t *pCommit ) 23 { 24 UNIMPLEMENTED; 25 return( 0 ); 26 } 27 28 int _fileinfo = 0; 29