diff --git a/include/MiniFB.h b/include/MiniFB.h index 9a02ff1..eb1a34e 100644 --- a/include/MiniFB.h +++ b/include/MiniFB.h @@ -5,50 +5,13 @@ extern "C" { #endif -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -/* - -Keys not implemented yet - -enum -{ - MFB_KEY_ESC = 0x18, - MFB_KEY_A = 0x41, - MFB_KEY_B = 0x42, - MFB_KEY_C = 0x43, - MFB_KEY_D = 0x44, - MFB_KEY_E = 0x45, - MFB_KEY_F = 0x46, - MFB_KEY_G = 0x47, - MFB_KEY_H = 0x48, - MFB_KEY_I = 0x49, - MFB_KEY_J = 0x4A, - MFB_KEY_K = 0x4B, - MFB_KEY_L = 0x4C, - MFB_KEY_M = 0x4D, - MFB_KEY_N = 0x4E, - MFB_KEY_O = 0x4F, - MFB_KEY_P = 0x50, - MFB_KEY_Q = 0x51, - MFB_KEY_R = 0x52, - MFB_KEY_S = 0x53, - MFB_KEY_T = 0x54, - MFB_KEY_U = 0x55, - MFB_KEY_V = 0x56, - MFB_KEY_W = 0x57, - MFB_KEY_X = 0x58, - MFB_KEY_Y = 0x59, - MFB_KEY_Z = 0x5A, -}; -*/ - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #define MFB_RGB(r, g, b) (((unsigned int)r) << 16) | (((unsigned int)g) << 8) | b /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Create a window +// Create a window that is used to display the buffer sent into the mfb_update function, returns 0 if fails 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