[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
Function isEnhanceKbd - is an enhanced keyboard installed
Syntax boolean isEnhanceKbd(void);
Prototype in ibm.h
Remarks checks if the keyboard is enhanced (102 keys or 101
in Europe). Does your keyboard have F11 and F12? If
so, it's an enhanced keyboard.
Return value returns TRUE if an enhanced keyboard is installed,
FALSE otherwise.
Example #include <ibm.h>
main()
{
printf("Keyboard is ");
if (isEnhanceKbd())
printf("enhanced\n");
else
printf("old style (85 keys)\n");
}
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson