cen64/os/keycodes.h
Tyler J. Stachecki d348c23e2f Commit the new X11 user interface.
Streamline the design/layout of the UI code. An excellent,
unexpected side-effect of this commit resulted in a significant
increase in performance...
2015-05-16 15:51:17 -04:00

22 lines
331 B
C

//
// os/keycodes.h
//
// Definitions for keycodes.
//
// This file is subject to the terms and conditions defined in
// 'LICENSE', which is part of this source code package.
//
#ifndef __os_keycodes_h__
#define __os_keycodes_h__
#ifdef _WIN32
#include "os/windows/keycodes.h"
#else
#include "os/x11/keycodes.h"
#endif
#endif