72d39449db0b514146be085cd8620740f32b8a5a braney Tue Mar 12 13:52:10 2024 -0700 try this again diff --git src/hg/inc/exportedDataHubs.h src/hg/inc/exportedDataHubs.h index 6929483..0e3cd5f 100644 --- src/hg/inc/exportedDataHubs.h +++ src/hg/inc/exportedDataHubs.h @@ -51,17 +51,22 @@ 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 */