twn_filewatch.c: typo
This commit is contained in:
@ -10,11 +10,11 @@ enum FilewatchAction {
|
||||
FILEWATCH_ACTION_FILE_MODIFIED,
|
||||
};
|
||||
|
||||
typedef void (*FileatchCallback)(char const *path, enum FilewatchAction action);
|
||||
typedef void (*FilewatchCallback)(char const *path, enum FilewatchAction action);
|
||||
|
||||
bool filewatch_add_directory(char const *dir, FileatchCallback callback);
|
||||
bool filewatch_add_directory(char const *dir, FilewatchCallback callback);
|
||||
|
||||
bool filewatch_add_file(char const *file, FileatchCallback callback);
|
||||
bool filewatch_add_file(char const *file, FilewatchCallback callback);
|
||||
|
||||
void filewatch_poll(void);
|
||||
|
||||
|
Reference in New Issue
Block a user