X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fipcdef.h;h=e139b49fdf8a592e0c6e4245f7bac9d089f5f1c1;hb=dec376f24d293ec5b3b979981238115ad4e7fd9c;hp=9e597250d71a0ed45106722e65505695d1f04f2c;hpb=6f47ceb64389509e94cd5ea4c668dfa34238d23f;p=citadel.git diff --git a/citadel/ipcdef.h b/citadel/ipcdef.h index 9e597250d..e139b49fd 100644 --- a/citadel/ipcdef.h +++ b/citadel/ipcdef.h @@ -39,6 +39,7 @@ struct CtdlServInfo { char serv_sysadm[64]; char serv_moreprompt[256]; int serv_ok_floors; + int serv_paging_level; }; #define QR_PERMANENT 1 /* Room does not purge */ @@ -66,10 +67,12 @@ struct CtdlServInfo { #define US_DISAPPEAR 512 /* Use "disappearing msg prompts" */ #define US_REGIS 1024 /* Registered user */ #define US_PAGINATOR 2048 /* Pause after each screen of text */ -#define US_INTERNET 4096 /* UUCP/Internet mail privileges */ +#define US_INTERNET 4096 /* Internet mail privileges */ #define US_FLOORS 8192 /* User wants to see floors */ +#define US_COLOR 16384 /* User wants ANSI color support */ #define US_USER_SET (US_LASTOLD | US_EXPERT | US_UNLISTED | \ - US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | US_FLOORS) + US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | \ + US_FLOORS | US_COLOR ) void serv_puts(char *buf); void serv_gets(char *buf);