mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
fd09abaeb2
All editor private API stuff is located now in edit/edit-impl.h. Public API is located in edit/edit.h. Added functions to read some fields of WEdit struct. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
19 lines
294 B
C
19 lines
294 B
C
|
|
/** \file
|
|
* \brief Header: cooledit.bindings file parser
|
|
* \author Vitja Makarov
|
|
* \date 2005
|
|
*/
|
|
|
|
#ifndef MC_USERMAP_H
|
|
#define MC_USERMAP_H
|
|
|
|
#define MC_USERMAP ".mc/cedit/cooledit.bindings"
|
|
|
|
#include "edit-impl.h"
|
|
|
|
/* load user map */
|
|
gboolean edit_load_user_map (WEdit *edit);
|
|
|
|
#endif
|