]> code.citadel.org Git - citadel.git/commitdiff
* Added MSGS_* flags to make using the new CxMsList() api easier to code for.
authorBrian <brian@uncensored.citadel.org>
Thu, 22 Feb 2001 17:14:12 +0000 (17:14 +0000)
committerBrian <brian@uncensored.citadel.org>
Thu, 22 Feb 2001 17:14:12 +0000 (17:14 +0000)
libCxClient/ChangeLog
libCxClient/src/CxClient.h

index 88f0224527b13cba1ef3e3e3a18ef34945e7fb58..77859c61064a77e9bb9b99d23bdd363cd11e7822 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 1.7  2001/02/22 17:14:12  brian
+* Added MSGS_* flags to make using the new CxMsList() api easier to code for.
+
 Revision 1.6  2001/02/22 17:05:19  brian
 * Updated CxMsList() API to allow users to select only NEW messages, or only
 the LAST x messages (<-skel).  THIS WILL REQUIRE CLIENT-SIDE CHANGES IN ORDER
@@ -18,4 +21,3 @@ Revision 1.3  2001/02/07 22:42:24  brian
 Revision 1.2  2001/02/07 22:41:51  brian
 * Updated ChangeLog to conform to Citadel/UX standards (kinda)  :)
 
-
index 1482b3db4f5168838e1f210992074ad0c8b78d8e..a66efe2bffe04fb5b3d14de8d25412000992be99 100644 (file)
@@ -210,6 +210,10 @@ char               *CxFiGet(const char *);
 /**
  ** Message Input/Output
  **/
+#define                MSGS_ALL                0       // Retrieve ALL messages in room.
+#define                MSGS_NEW                1       // Retrieve only UNREAD messages in room.
+#define                MSGS_LAST               2       // *Unsupported* Retrieve the LAST X messages in room.
+#define                MSGS_SEARCH             3       // *Unsupported* Search room for ...? .
 CXLIST         CxMsInfo(CXLIST);
 CXLIST         CxMsList(int,int);
 int            CxMsLoad(const char *, int, MESGINFO *);