ReactOS 0.4.15-dev-7942-gd23573b
stubs.c File Reference
#include <precomp.h>
Include dependency graph for stubs.c:

Go to the source code of this file.

Functions

int CDECL _get_printf_count_output (void)
 
int CDECL _set_printf_count_output (int enable)
 
int __STRINGTOLD (long double *value, char **endptr, const char *str, int flags)
 
void __fileinfo (void)
 
void stub (void)
 
unsigned int _get_output_format (void)
 

Variables

static BOOL n_format_enabled = TRUE
 

Function Documentation

◆ __fileinfo()

void __fileinfo ( void  )

Definition at line 23 of file stubs.c.

24{
25 FIXME("__fileinfo stub\n");
26}
#define FIXME(fmt,...)
Definition: debug.h:111

◆ __STRINGTOLD()

int __STRINGTOLD ( long double value,
char **  endptr,
const char str,
int  flags 
)

Definition at line 17 of file stubs.c.

18{
19 FIXME("%p %p %s %x stub\n", value, endptr, str, flags );
20 return 0;
21}
GLbitfield flags
Definition: glext.h:7161
const WCHAR * str
Definition: pdh_main.c:94

◆ _get_output_format()

unsigned int _get_output_format ( void  )

Definition at line 33 of file stubs.c.

34{
35 return 0;
36}

◆ _get_printf_count_output()

int CDECL _get_printf_count_output ( void  )

Definition at line 5 of file stubs.c.

6{
7 return n_format_enabled ? 1 : 0;
8}
static BOOL n_format_enabled
Definition: stubs.c:3

◆ _set_printf_count_output()

int CDECL _set_printf_count_output ( int  enable)

Definition at line 10 of file stubs.c.

11{
14 return old ? 1 : 0;
15}
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
unsigned int BOOL
Definition: ntddk_ex.h:94
GLboolean enable
Definition: glext.h:11120

◆ stub()

void stub ( void  )

Definition at line 28 of file stubs.c.

29{
30 FIXME("stub\n");
31}

Variable Documentation

◆ n_format_enabled

BOOL n_format_enabled = TRUE
static

Definition at line 3 of file stubs.c.

Referenced by _get_printf_count_output(), and _set_printf_count_output().