#include "queue.h"
Go to the source code of this file.
Defines | |
#define | ARGUNUSED(arg) arg |
#define | ADD_MEMO_BOX(who) |
Create a memo box for a user. |
Definition in file macro.h.
|
Value: do { \ (who)->memos = (MemoBox *)oalloc(sizeof(MemoBox)); \ (who)->memos->max = MS_DEF_RCV_MAX; \ LIST_INIT(&(who)->memos->mb_memos); \ } while(0)
Definition at line 54 of file macro.h. Referenced by readNickData(), and sendToMemoServ(). |
|
deep, dark magic to tell gcc (but not g++, at least not in 2.7.2.x) that an argument to a function is not used. |