]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlookup.h
character2.diff.gz
[lyx.git] / src / lyxlookup.h
index 1ecda2cf69bf26f39e6f131d80fa8d6009a2a5ef..9af24af619bab410859b4c95a741e05fb248200c 100644 (file)
@@ -1,29 +1,32 @@
 /* This file is part of                   -*- C++ -*-
-* ======================================================
+* ====================================================== 
 * 
 *           LyX, The Document Processor
 *       
-*          Copyright (C) 1995-1997 Matthias Ettrich 
-*                                    & The LyX team
+*           Copyright 1995 Matthias Ettrich 
+*           Copyright 1995-2000 The LyX Team.
 *
-*======================================================*/
+* ====================================================== */
 
 /* This header file defines wrappers around the X input method related
    functions. This should probably be moved into LyXView (to have
    different input methods for different frames, but for now we can
    keep it as it is. */
+#ifndef LYXLOOKUP_H
+#define LYXLOOKUP_H
 
 #include <config.h>
 #include <X11/Xlib.h>
 
-// Initialize the compose key handling
-extern void InitLyXLookup(Display* , Window ) ;
+/// Initialize the compose key handling
+extern void InitLyXLookup(Display *, Window);
 
-// Read a keysym and/or a string (like XLookupString)
-extern int LyXLookupString(XEvent *event,    
-                   char *buffer_return, int bytes_buffer,
-                   KeySym *keysym_return);
+/// Read a keysym and/or a string (like XLookupString)
+extern int LyXLookupString(XEvent * event,    
+                          char * buffer_return, int bytes_buffer,
+                          KeySym * keysym_return);
 
-// Call this when you destroy your window
+/// Call this when you destroy your window
 extern void CloseLyXLookup();
 
+#endif