Elm.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /******************************************************************************/
  2. extern cchar8 *ElmTypeName[]
  3. ;
  4. extern cchar8 *ElmTypeClass[]
  5. ;
  6. extern cchar8 *ElmTypeDesc[]
  7. ;
  8. /******************************************************************************/
  9. bool ElmCompressable(ELM_TYPE type);
  10. bool ElmHasFile (ELM_TYPE type);
  11. bool ElmFileInShort (ELM_TYPE type);
  12. bool ElmEdit (ELM_TYPE type);
  13. bool ElmGame (ELM_TYPE type);
  14. bool ElmSendBoth (ELM_TYPE type);
  15. bool ElmInFolder (ELM_TYPE type);
  16. bool ElmManualSync (ELM_TYPE type);
  17. bool ElmPublish (ELM_TYPE type);
  18. bool ElmPublishNoCompress(ELM_TYPE type);
  19. bool ElmCanAccessID (ELM_TYPE type);
  20. bool ElmImageLike (ELM_TYPE type );
  21. bool ElmCompatible(ELM_TYPE src, ELM_TYPE dest);
  22. bool ElmMovable (ELM_TYPE type);
  23. bool ElmVisible (ELM_TYPE type);
  24. bool ElmCanHaveChildren(ELM_TYPE type);
  25. bool EqualID(C UID &id, C UID &src_id);
  26. bool NewerID(C UID &id, C UID &src_id);
  27. bool SyncID( UID &id, C UID &src_id);
  28. bool UndoID( UID &id, C UID &src_id);
  29. /******************************************************************************/