mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
e6e9f038ed
callback. Nothing important.
18 lines
282 B
C
18 lines
282 B
C
#ifndef CALLBACK_H
|
|
#define CALLBACK_H
|
|
|
|
/*
|
|
* All callbacks are char *func( char *msg );
|
|
* INFO/BOX should always return NULL;
|
|
*/
|
|
|
|
#define CALL_INFO 0
|
|
#define CALL_BOX 1
|
|
#define CALL_PASSWD 2
|
|
|
|
#define NUM_CALLBACKS 3
|
|
|
|
extern void vfs_set_callback( int num, void *func );
|
|
|
|
#endif
|