Can you tell I'm REALLY avoiding another task right now?
[citadel.git] / citadel / server / euidindex.h
1 // Index messages by EUID per room.
2
3 int DoesThisRoomNeedEuidIndexing(struct ctdlroom *qrbuf);
4 // locate_message_by_euid is deprecated. Use CtdlLocateMessageByEuid instead
5 long locate_message_by_euid(char *euid, struct ctdlroom *qrbuf) __attribute__ ((deprecated));
6 void index_message_by_euid(char *euid, struct ctdlroom *qrbuf, long msgnum);
7 void rebuild_euid_index(void);