Disabled keys info as not supported yet

This commit is contained in:
Daniel Collin 2014-06-06 18:10:20 +02:00
parent 78e89dbd3d
commit be9bc071bf

View File

@ -6,6 +6,9 @@ extern "C" {
#endif #endif
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*
Keys not implemented yet
enum enum
{ {
@ -37,6 +40,7 @@ enum
MFB_KEY_Y = 0x59, MFB_KEY_Y = 0x59,
MFB_KEY_Z = 0x5A, MFB_KEY_Z = 0x5A,
}; };
*/
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@ -48,7 +52,7 @@ enum
int mfb_open(const char* name, int width, int height); int mfb_open(const char* name, int width, int height);
// Update the display. Input buffer is assumed to be a 32-bit buffer of the size given in the open call // Update the display. Input buffer is assumed to be a 32-bit buffer of the size given in the open call
// Will return -1 on error, 0 if no key has been pressed otherwise the key code matching the keycode enum // Will return -1 when ESC key is pressed (later on will return keycode and -1 on other close signal)
int mfb_update(void* buffer); int mfb_update(void* buffer);
// Close the window // Close the window