////////////////////////////////////////////////////////// // ExportTree.h // // // // Contains functions for exporting some information // // from the WAM tree structure into a human-readable // // form. Uses a recursive folder dump algorithm // // // // AUTHOR: Lucas Scharf // // // // REVISIONS: DATE, REASON // // AUTHOR FOR EACH (if different) // // VERSION: x.xx // ////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////// // Multiple Include Protection // ////////////////////////////////////////////////////////// #ifndef EXPORTTREE_H #define EXPORTTREE_H ////////////////////////////////////////////////////////// // Includes // ////////////////////////////////////////////////////////// #include //for stream i/o #include "Constants.h" //StringLength, root folder constants #include "BookmarkFileStructs.h" //Bookmark & folder types #include "ListFunctions.h" //Automation of linked-list operations ////////////////////////////////////////////////////////// // Public Function Prototypes // ////////////////////////////////////////////////////////// void ExportTree(FolderDataPtr FolderListHead, BookmarkDataPtr BookmarkListHead, const char OutputFileName[]); #endif