/************************************************************************ * PSYC Manager Daemon, include/string_defs.h * Copyright (C) 2001/02 Mark Ralf Thomson * Programmer: Mark Ralf Thomson */ static char *replies[] = { /* 000 R_YARECOGNIZED */ "You are now recognized", /* 001 R_LOGINOK */ "You are successfully logged in", /* 002 R_WRONGPASSW */ "Wrong password", /* 003 R_UNKWN_VAR */ "Cant set variable; [_variable] is a unknown variable", /* 004 R_IMPL_METH */ "Unimplementet method [_method]" }; #define R_YARECOGNIZED replies[0] #define R_LOGINOK replies[1] #define R_WRONGPASSW replies[2] #define R_UNKWN_VAR replies[3] #define R_IMPL_METH replies[4] /* This file was automatically generatet with Umwandler 1.0 */