Searched defs:txt (Results 1 – 2 of 2) sorted by relevance
217 #define X_WARN_CREATE(mod,num,txt) ((XSTATUS)(((mod & 0x7f)<< 8) | (num & 0xff))) argument218 #define X_ERR_CREATE(mod,num,txt) ((XSTATUS)(0x8000 | X_WARN_CREATE(mod,num,txt))) argument
14 static inline const char *gettext(const char *txt) { return txt; } in gettext()