8ccceea1c52492b6a869af8de3190a387d4b6550 braney Tue Mar 12 13:41:09 2024 -0700 added exportedDataHubs dialog and code to deal with quickLifted hubs diff --git src/hg/inc/exportedDataHubs.h src/hg/inc/exportedDataHubs.h index 95a8b41..3189b77 100644 --- src/hg/inc/exportedDataHubs.h +++ src/hg/inc/exportedDataHubs.h @@ -48,17 +48,24 @@ void exportedDataHubsFreeList(struct exportedDataHubs **pList); /* Free a list of dynamically allocated exportedDataHubs's */ void exportedDataHubsOutput(struct exportedDataHubs *el, FILE *f, char sep, char lastSep); /* Print out exportedDataHubs. Separate fields with sep. Follow last field with lastSep. */ #define exportedDataHubsTabOut(el,f) exportedDataHubsOutput(el,f,'\t','\n'); /* Print out exportedDataHubs as a line in a tab-separated file. */ #define exportedDataHubsCommaOut(el,f) exportedDataHubsOutput(el,f,',',','); /* Print out exportedDataHubs as a comma separated list including final comma. */ /* -------------------------------- End autoSql Generated Code -------------------------------- */ + +boolean exportedDataHubsEnabled(); +/* Return TRUE if feature is available */ + +void printExportedDataHubs(char *db); +/* Fill out exported data hubs popup. */ + #endif /* EXPORTEDDATAHUBS_H */