Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenstubs.c
Go to the documentation of this file.
00001 #include <precomp.h> 00002 00003 static BOOL n_format_enabled = TRUE; 00004 00005 int CDECL _get_printf_count_output( void ) 00006 { 00007 return n_format_enabled ? 1 : 0; 00008 } 00009 00010 int CDECL _set_printf_count_output( int enable ) 00011 { 00012 BOOL old = n_format_enabled; 00013 n_format_enabled = (enable ? TRUE : FALSE); 00014 return old ? 1 : 0; 00015 } 00016 00017 int __STRINGTOLD( long double *value, char **endptr, const char *str, int flags ) 00018 { 00019 FIXME("%p %p %s %x stub\n", value, endptr, str, flags ); 00020 return 0; 00021 } 00022 00023 void __fileinfo(void) 00024 { 00025 FIXME("__fileinfo stub\n"); 00026 } 00027 00028 void stub(void) 00029 { 00030 FIXME("stub\n"); 00031 } 00032 00033 unsigned int _get_output_format(void) 00034 { 00035 return 0; 00036 } 00037 Generated on Sun May 27 2012 04:21:46 for ReactOS by
1.7.6.1
|