View of xos/drivers/keymap.h


XOS | Parent Directory | View | Download

/* Copyright (C) 2008  Emmanuel Varoquaux
 
   This file is part of XOS.
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.
 
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
 
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
#ifndef KEYMAP_H
#define KEYMAP_H
 
#include <config.h>
 
#define xstr(s) str(s)
#define str(s) #s
 
#define KEYMAP_NAME xstr(KEYMAP)
#define __KEYMAP_H  xstr(keymap_ KEYMAP.h)
 
struct kbdiacr {
  unsigned char diacr;
  unsigned char base;
  unsigned char result;
};
 
#include __KEYMAP_H
 
#endif