repo.or.cz
/
midnight-commander.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Last fuzzy trim
[midnight-commander.git]
/
vfs
/
callback.h
blob
07d1aae5074488c4c90b9d540e7bcb289ef685f2
1
#ifndef CALLBACK_H
2
#define CALLBACK_H
3
4
/*
5
* All callbacks are char *func( char *msg );
6
* INFO/BOX should always return NULL;
7
*/
8
9
#define CALL_INFO 0
10
#define CALL_BOX 1
11
#define CALL_PASSWD 2
12
13
#define NUM_CALLBACKS 3
14
15
extern
void
vfs_set_callback
(
int
num
,
void
*
func
);
16
17
#endif