/* * keydis.h: * * Copyright (c) 2008 James McKenzie , * All rights reserved. * */ /* * $Id$ */ /* * $Log$ * Revision 1.1 2008/02/14 02:46:44 james * *** empty log message *** * * Revision 1.1 2008/02/14 01:55:57 james * *** empty log message *** * */ #ifndef __KEYDIS_H__ #define __KEYDIS_H__ #define KEYDIS_SIGNATURE \ void (*close)(struct KeyDis_struct *); \ int (*key)(struct KeyDis_struct *,int key) typedef struct KeyDis_struct { KEYDIS_SIGNATURE; } KeyDis; #endif /* __KEYDIS_H__ */