#include <conio.h>
#include <corecrt_internal_lowio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
Go to the source code of this file.
◆ _getextendedkeycode()
Definition at line 506 of file getch.cpp.
507{
509
511 {
512
514 {
516 {
517 continue;
518 }
519
520
522 {
524 }
526 {
528 }
530 {
532 }
533 else
534 {
536 }
537 }
538
539 return nullptr;
540 }
541 else
542 {
543
544
545
546 CharPair const* pCP;
547
549 {
551 }
553 {
555 }
557 {
559 }
560 else
561 {
563 }
564
565
566
567 if ((pCP->LeadChar != 0 && pCP->LeadChar != 224) || pCP->SecondChar == 0)
568 {
569 return nullptr;
570 }
571
572 return pCP;
573 }
574}
static EnhKeyVals const EnhancedKeys[]
static NormKeyVals const NormalKeys[]
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
#define LEFT_CTRL_PRESSED
#define RIGHT_CTRL_PRESSED
#define RIGHT_ALT_PRESSED
Referenced by _getch_nolock(), _getwch_nolock(), and _kbhit_nolock().
◆ _getwch()
Definition at line 42 of file getwch.cpp.
43{
47 {
49 }
51 {
53 }
56}
void __cdecl __acrt_unlock(_In_ __acrt_lock_id lock)
__acrt_lock(__acrt_heap_lock)
wint_t __cdecl _getwch_nolock()
◆ _getwch_nolock()
Definition at line 77 of file getwch.cpp.
78{
79
80
82 {
83 wchar_t const buffered_wchar =
static_cast<wchar_t>(
wchbuf & 0xFFFF);
85 return buffered_wchar;
86 }
87
88
89
92
93
94 DWORD old_console_mode;
99 {
100 for ( ; ; )
101 {
102
106 {
109 }
110
111 if (num_read == 0)
112 {
115 }
116
117
119 {
120
123 {
126 }
127
128
129
132 {
136 }
137 }
138 }
139 }
141 {
142
144 }
147}
CharPair const *__cdecl _getextendedkeycode(KEY_EVENT_RECORD *)
BOOL __cdecl __dcrt_read_console_input(_Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
BOOL __cdecl __dcrt_get_input_console_mode(_Out_ LPDWORD lpMode)
BOOL __cdecl __dcrt_lowio_ensure_console_input_initialized()
BOOL __cdecl __dcrt_set_input_console_mode(_In_ DWORD dwMode)
union _KEY_EVENT_RECORD::@3375 uChar
Referenced by _getwch(), and _getwche_nolock().
◆ _getwche()
Definition at line 59 of file getwch.cpp.
60{
64 {
66 }
68 {
70 }
73}
wint_t __cdecl _getwche_nolock()
◆ _getwche_nolock()
Definition at line 151 of file getwch.cpp.
152{
153
154
156 {
157 wchar_t const buffered_wchar =
static_cast<wchar_t>(
wchbuf & 0xFFFF);
159 return buffered_wchar;
160 }
161
162
163
165 if (gotten_wchar ==
WEOF)
167
170
171 return gotten_wchar;
172}
_Check_return_opt_ _CRTIMP wint_t __cdecl _putwch_nolock(wchar_t _WCh)
Referenced by _getwche().
◆ _ungetwch()
Definition at line 179 of file getwch.cpp.
180{
184 {
186 }
188 {
190 }
193}
wint_t __cdecl _ungetwch_nolock(wint_t const c)
◆ _ungetwch_nolock()
◆ __dcrt_lowio_console_input_handle
intptr_t __dcrt_lowio_console_input_handle |
◆ wchbuf