winfo_doc.h 363 B

123456789101112
  1. #ifndef __WINFO_DOC_H
  2. #define __WINFO_DOC_H
  3. #include "presentity.h"
  4. #include "watcher.h"
  5. #include "offline_winfo.h"
  6. int create_winfo_document(struct presentity* p, struct watcher* w, str *dst, str *dst_content_type);
  7. int create_winfo_document_offline(struct presentity* p, struct watcher* w,
  8. offline_winfo_t *infos, str *dst, str *dst_content_type);
  9. #endif