mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
e5c0c7185e
svn path=/trunk/; revision=2456
18 lines
411 B
C
18 lines
411 B
C
#ifndef __EXT_H
|
|
#define __EXT_H
|
|
|
|
char *regex_command (char *filename, char *action, char **drops, int *move_dir);
|
|
|
|
/* Call it after the user has edited the mc.ext file,
|
|
* to flush the cached mc.ext file
|
|
*/
|
|
void flush_extension_file (void);
|
|
|
|
#ifdef OS2_NT
|
|
# define MC_USER_EXT "mc.ext"
|
|
# define MC_LIB_EXT "mc.ext"
|
|
#else
|
|
# define MC_USER_EXT ".mc/ext"
|
|
# define MC_LIB_EXT "mc.ext"
|
|
#endif
|
|
#endif
|