0 Members and 1 Guest are viewing this topic.
#include <tigcclib.h>void _main(void) { void *kbq = kbd_queue(); unsigned short key; unsigned long count = 0; // clear the screen clrscr(); // print the string telling the user to press a key printf("Please press a key.\n"); // while no key was retrieved from the keyboard queue while (OSdequeue(&key, kbq)) { // increment the variable number by one printf("Queue Check: %lu.\n", count); ++count; } // tell them what key they pressed printf("The keycode was %hu\n", key); // wait for input before exiting ngetchx();}
Unresolved reference to 'OSdequeue'.
Well.. I only get this one error:QuoteUnresolved reference to 'OSdequeue'.