mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
a27b8009e0
This prevents pulling in function declarations that are incompatible with the generated stubs.
29 lines
412 B
C
29 lines
412 B
C
#include <windef.h>
|
|
#include <stubs.h>
|
|
|
|
#undef UNIMPLEMENTED
|
|
#define UNIMPLEMENTED __wine_spec_unimplemented_stub("msvcrt.dll", __FUNCTION__)
|
|
|
|
int _atodbl(
|
|
void * value,
|
|
char * str)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return 0;
|
|
}
|
|
|
|
int _ismbbkprint(
|
|
unsigned int c)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return 0;
|
|
}
|
|
|
|
size_t _heapused( size_t *pUsed, size_t *pCommit )
|
|
{
|
|
UNIMPLEMENTED;
|
|
return( 0 );
|
|
}
|
|
|
|
int _fileinfo = 0;
|