X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fserver%2Fwebcit.h;h=916c4e1f0b50a3445b4f66dcb2e6c96835f6ce6b;hb=3292f7f60e2f42173b0b233e019ddc0df72d38fa;hp=e422849a4321c3e962253339d34220e5c2f6cea7;hpb=a88a550cf8b88924645686b5c2fea78c4e0bcb66;p=citadel.git diff --git a/webcit-ng/server/webcit.h b/webcit-ng/server/webcit.h index e422849a4..916c4e1f0 100644 --- a/webcit-ng/server/webcit.h +++ b/webcit-ng/server/webcit.h @@ -146,7 +146,6 @@ enum { // Everything below here is generated with this command: // cproto -f2 *.c 2>/dev/null |sed 's/^\/\*/\n\/\//g' | sed 's/\ \*\/$//g' - // admin_functions.c void try_login(struct http_transaction *, struct ctdlsession *); void logout(struct http_transaction *, struct ctdlsession *); @@ -210,6 +209,9 @@ void perform_one_http_transaction(struct client_handle *); char *header_val(struct http_transaction *, char *); char *get_url_param(struct http_transaction *, char *); +// ical_ctdl_is_overlap.c +int ical_ctdl_is_overlap(struct icaltimetype, struct icaltimetype, struct icaltimetype, struct icaltimetype); + // ical_dezonify.c icaltimezone *get_default_icaltimezone(void); void ical_dezonify_backend(icalcomponent *, icalcomponent *, icalproperty *); @@ -304,4 +306,3 @@ void spawn_another_worker_thread(int *); void worker_entry(int *); int webserver(char *, int, int); -