]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlookup.h
Fix small bug in reading \set_color in lyxrc
[lyx.git] / src / lyxlookup.h
index bddac0f93e289a9b1072db661d66598173725da3..5ed0e2e203dd23dfb2c03b561883b7c6ac89ccac 100644 (file)
@@ -1,28 +1,31 @@
 /* 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. */
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include <X11/Xlib.h>
 
 // Initialize the compose key handling
-extern void InitLyXLookup(Display, Window ) ;
+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);
+extern int LyXLookupString(XEvent * event,    
+                          char * buffer_return, int bytes_buffer,
+                          KeySym * keysym_return);
 
 // Call this when you destroy your window
 extern void CloseLyXLookup();
-