Assembly questions The HANDLE data type in MSWindows is equi
Assembly questions:
The HANDLE data type in MS-Windows is equivalent to MASM\'s _________ type.
The LPSTR data type in MS-Windows is equivalent to MASM\'s ___________ type.
The ___________ function in the Windows API writes a character string to a console screen buffer beginning at the current cursor location.
When performing single-character input, you have to change the console flag values by calling the _______________ function.
Solution
1) HANDLE in MS-windows is equivalent to MASM\'s \"DWORD\" type. (Handle to an object)
2)The LPSTR data type in MS-Windows is equivalent to MASM\'s \"PTR BYTE\" type.
( A 32-bit pointer to a null-terminated string of 8-bit Windows (ANSI)
characters)
3)ReadFile or ReadConsole function
