/* $Id$
 *
 * $Log$
 */

#include <exec/types.h>

/* FN Handler error codes and error texttable */

#define FN_OK                   0
#define FN_HANDLER_ERR          1
#define FN_INIT_ERR             2
#define FN_FILENAME_ERR         3
#define FN_COMMAND_ERR          4
#define FN_FLAGS_ERR            5
#define FN_HASNOTIFICATION_ERR  6
#define FN_DOESNOTEXIST_ERR     7
#define FN_READ_ERR             8
#define FN_NOMEM_ERR            9
#define FN_UNKNOWN_ERR          10
#define FN_NOTFILE_ERR          11

static UBYTE *FN_ErrorMsgs[] = {
    NULL,
    "Couldn't find Notification Handler",
    "Couldn't start File Notification",
    "File Notification Request failed:\nIllegal filename",
    "File Notification Request failed:\nIllegal command",
    "File Notification Request failed:\nIllegal flags",
    "File Notification Request failed:\nFile already has notification",
    "File Notification Request failed:\nFile does not exist",
    "File Notification Request failed:\nRead error",
    "File Notification Request failed:\nNo memory",
    "File Notification Request failed:\nTarget unknown",
    "File Notification Request failed:\nNot a file",
    NULL
};
