mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[CRT]
* Annotate conio.h. svn path=/trunk/; revision=58494
This commit is contained in:
+373
-51
@@ -15,27 +15,158 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
_CRTIMP char * __cdecl _cgets(char *_Buffer);
|
||||
_CRTIMP int __cdecl _cprintf(const char *_Format,...);
|
||||
_CRTIMP int __cdecl _cputs(const char *_Str);
|
||||
_CRT_INSECURE_DEPRECATE(_cscanf_s) _CRTIMP int __cdecl _cscanf(const char *_Format,...);
|
||||
_CRT_INSECURE_DEPRECATE(_cscanf_s_l) _CRTIMP int __cdecl _cscanf_l(const char *_Format,_locale_t _Locale,...);
|
||||
_CRTIMP int __cdecl _getch(void);
|
||||
_CRTIMP int __cdecl _getche(void);
|
||||
_CRTIMP int __cdecl _vcprintf(const char *_Format,va_list _ArgList);
|
||||
_CRTIMP int __cdecl _cprintf_p(const char *_Format,...);
|
||||
_CRTIMP int __cdecl _vcprintf_p(const char *_Format,va_list _ArgList);
|
||||
_CRTIMP int __cdecl _cprintf_l(const char *_Format,_locale_t _Locale,...);
|
||||
_CRTIMP int __cdecl _vcprintf_l(const char *_Format,_locale_t _Locale,va_list _ArgList);
|
||||
_CRTIMP int __cdecl _cprintf_p_l(const char *_Format,_locale_t _Locale,...);
|
||||
_CRTIMP int __cdecl _vcprintf_p_l(const char *_Format,_locale_t _Locale,va_list _ArgList);
|
||||
_CRTIMP int __cdecl _kbhit(void);
|
||||
_CRTIMP int __cdecl _putch(int _Ch);
|
||||
_CRTIMP int __cdecl _ungetch(int _Ch);
|
||||
_CRTIMP int __cdecl _getch_nolock(void);
|
||||
_CRTIMP int __cdecl _getche_nolock(void);
|
||||
_CRTIMP int __cdecl _putch_nolock(int _Ch);
|
||||
_CRTIMP int __cdecl _ungetch_nolock(int _Ch);
|
||||
_CRTIMP
|
||||
char*
|
||||
__cdecl
|
||||
_cgets(
|
||||
_Pre_notnull_ _Post_z_ char *_Buffer);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cprintf(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cputs(
|
||||
_In_z_ const char *_Str);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_INSECURE_DEPRECATE(_cscanf_s)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cscanf(
|
||||
_In_z_ _Scanf_format_string_ const char *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_INSECURE_DEPRECATE(_cscanf_s_l)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cscanf_l(
|
||||
_In_z_ _Scanf_format_string_ const char *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
...);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_getch(void);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_getche(void);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcprintf(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
va_list _ArgList);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cprintf_p(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcprintf_p(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
va_list _ArgList);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cprintf_l(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcprintf_l(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
va_list _ArgList);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cprintf_p_l(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcprintf_p_l(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
va_list _ArgList);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_kbhit(void);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_putch(
|
||||
_In_ int _Ch);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_ungetch(
|
||||
_In_ int _Ch);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_getch_nolock(void);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_getche_nolock(void);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_putch_nolock(
|
||||
_In_ int _Ch);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_ungetch_nolock(
|
||||
_In_ int _Ch);
|
||||
|
||||
#if defined(_X86_) && !defined(__x86_64)
|
||||
int __cdecl _inp(unsigned short);
|
||||
@@ -54,26 +185,153 @@ extern "C" {
|
||||
#define WEOF (wint_t)(0xFFFF)
|
||||
#endif
|
||||
|
||||
_CRTIMP wchar_t *_cgetws(wchar_t *_Buffer);
|
||||
_CRTIMP wint_t __cdecl _getwch(void);
|
||||
_CRTIMP wint_t __cdecl _getwche(void);
|
||||
_CRTIMP wint_t __cdecl _putwch(wchar_t _WCh);
|
||||
_CRTIMP wint_t __cdecl _ungetwch(wint_t _WCh);
|
||||
_CRTIMP int __cdecl _cputws(const wchar_t *_String);
|
||||
_CRTIMP int __cdecl _cwprintf(const wchar_t *_Format,...);
|
||||
_CRT_INSECURE_DEPRECATE(_cwscanf_s) _CRTIMP int __cdecl _cwscanf(const wchar_t *_Format,...);
|
||||
_CRT_INSECURE_DEPRECATE(_cwscanf_s_l) _CRTIMP int __cdecl _cwscanf_l(const wchar_t *_Format,_locale_t _Locale,...);
|
||||
_CRTIMP int __cdecl _vcwprintf(const wchar_t *_Format,va_list _ArgList);
|
||||
_CRTIMP int __cdecl _cwprintf_p(const wchar_t *_Format,...);
|
||||
_CRTIMP int __cdecl _vcwprintf_p(const wchar_t *_Format,va_list _ArgList);
|
||||
_CRTIMP int __cdecl _cwprintf_l(const wchar_t *_Format,_locale_t _Locale,...);
|
||||
_CRTIMP int __cdecl _vcwprintf_l(const wchar_t *_Format,_locale_t _Locale,va_list _ArgList);
|
||||
_CRTIMP int __cdecl _cwprintf_p_l(const wchar_t *_Format,_locale_t _Locale,...);
|
||||
_CRTIMP int __cdecl _vcwprintf_p_l(const wchar_t *_Format,_locale_t _Locale,va_list _ArgList);
|
||||
_CRTIMP wint_t __cdecl _putwch_nolock(wchar_t _WCh);
|
||||
_CRTIMP wint_t __cdecl _getwch_nolock(void);
|
||||
_CRTIMP wint_t __cdecl _getwche_nolock(void);
|
||||
_CRTIMP wint_t __cdecl _ungetwch_nolock(wint_t _WCh);
|
||||
_CRTIMP
|
||||
wchar_t*
|
||||
_cgetws(
|
||||
_Pre_notnull_ _Post_z_ wchar_t *_Buffer);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_getwch(void);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_getwche(void);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_putwch(
|
||||
wchar_t _WCh);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_ungetwch(
|
||||
wint_t _WCh);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cputws(
|
||||
_In_z_ const wchar_t *_String);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cwprintf(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_INSECURE_DEPRECATE(_cwscanf_s)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cwscanf(
|
||||
_In_z_ _Scanf_format_string_ const wchar_t *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_INSECURE_DEPRECATE(_cwscanf_s_l)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cwscanf_l(
|
||||
_In_z_ _Scanf_format_string_ const wchar_t *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcwprintf(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
va_list _ArgList);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cwprintf_p(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcwprintf_p(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
va_list _ArgList);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cwprintf_l(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
...);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcwprintf_l(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
va_list _ArgList);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_cwprintf_p_l(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
...);
|
||||
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
_vcwprintf_p_l(
|
||||
_In_z_ _Printf_format_string_ const wchar_t *_Format,
|
||||
_In_opt_ _locale_t _Locale,
|
||||
va_list _ArgList);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_putwch_nolock(
|
||||
wchar_t _WCh);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_getwch_nolock(void);
|
||||
|
||||
_Check_return_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_getwche_nolock(void);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRTIMP
|
||||
wint_t
|
||||
__cdecl
|
||||
_ungetwch_nolock(
|
||||
wint_t _WCh);
|
||||
|
||||
#endif /* _WCONIO_DEFINED */
|
||||
|
||||
#ifndef _MT
|
||||
@@ -83,16 +341,79 @@ extern "C" {
|
||||
#define _ungetwch() _ungetwch_nolock()
|
||||
#endif
|
||||
|
||||
#ifndef NO_OLDNAMES
|
||||
_CRT_NONSTDC_DEPRECATE(_cgets) _CRT_INSECURE_DEPRECATE(_cgets_s) _CRTIMP char *__cdecl cgets(char *_Buffer);
|
||||
_CRT_NONSTDC_DEPRECATE(_cprintf) _CRTIMP int __cdecl cprintf(const char *_Format,...);
|
||||
_CRT_NONSTDC_DEPRECATE(_cputs) _CRTIMP int __cdecl cputs(const char *_Str);
|
||||
_CRT_NONSTDC_DEPRECATE(_cscanf) _CRTIMP int __cdecl cscanf(const char *_Format,...);
|
||||
_CRT_NONSTDC_DEPRECATE(_getch) _CRTIMP int __cdecl getch(void);
|
||||
_CRT_NONSTDC_DEPRECATE(_getche) _CRTIMP int __cdecl getche(void);
|
||||
_CRT_NONSTDC_DEPRECATE(_kbhit) _CRTIMP int __cdecl kbhit(void);
|
||||
_CRT_NONSTDC_DEPRECATE(_putch) _CRTIMP int __cdecl putch(int _Ch);
|
||||
_CRT_NONSTDC_DEPRECATE(_ungetch) _CRTIMP int __cdecl ungetch(int _Ch);
|
||||
#ifndef NO_OLDNAMES
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_NONSTDC_DEPRECATE(_cgets)
|
||||
_CRT_INSECURE_DEPRECATE(_cgets_s)
|
||||
_CRTIMP
|
||||
char*
|
||||
__cdecl
|
||||
cgets(
|
||||
_Out_writes_z_(_Inexpressible_(*_Buffer + 2)) char *_Buffer);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_NONSTDC_DEPRECATE(_cprintf)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
cprintf(
|
||||
_In_z_ _Printf_format_string_ const char *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_NONSTDC_DEPRECATE(_cputs)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
cputs(
|
||||
_In_z_ const char *_Str);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_NONSTDC_DEPRECATE(_cscanf)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
cscanf(
|
||||
_In_z_ _Scanf_format_string_ const char *_Format,
|
||||
...);
|
||||
|
||||
_Check_return_
|
||||
_CRT_NONSTDC_DEPRECATE(_getch)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
getch(void);
|
||||
|
||||
_Check_return_
|
||||
_CRT_NONSTDC_DEPRECATE(_getche)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
getche(void);
|
||||
|
||||
_Check_return_
|
||||
_CRT_NONSTDC_DEPRECATE(_kbhit)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
kbhit(void);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_NONSTDC_DEPRECATE(_putch)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
putch(
|
||||
int _Ch);
|
||||
|
||||
_Check_return_opt_
|
||||
_CRT_NONSTDC_DEPRECATE(_ungetch)
|
||||
_CRTIMP
|
||||
int
|
||||
__cdecl
|
||||
ungetch(
|
||||
int _Ch);
|
||||
|
||||
#if (defined(_X86_) && !defined(__x86_64))
|
||||
_CRT_NONSTDC_DEPRECATE(_inp) _CRTIMP int __cdecl inp(unsigned short);
|
||||
@@ -100,6 +421,7 @@ extern "C" {
|
||||
_CRT_NONSTDC_DEPRECATE(_outp) _CRTIMP int __cdecl outp(unsigned short,int);
|
||||
_CRT_NONSTDC_DEPRECATE(_outpw) _CRTIMP unsigned short __cdecl outpw(unsigned short,unsigned short);
|
||||
#endif
|
||||
|
||||
#endif /* !NO_OLDNAMES */
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
Reference in New Issue
Block a user