8715d83d38d8bb18adfdd9ce05771b4cede85407 angie Fri Dec 5 09:52:07 2014 -0800 Moved some hgTables code that had been copied into a couple differentplaces into a new lib module, cartTrackDb. hgGenome/import.c has code that is fairly similar but that also needs to filter out custom tracks that were generated by hgGenome. diff --git src/hg/inc/hCommon.h src/hg/inc/hCommon.h index 92701b0..7c0b6dc 100644 --- src/hg/inc/hCommon.h +++ src/hg/inc/hCommon.h @@ -120,16 +120,19 @@ void hDumpStackPopAbortHandler(void); /* pop the stack dump abort handler from the stack if it's enabled */ void hVaUserAbort(char *format, va_list args); /* errAbort when a `user' error is detected. This is an error that comes * from user input. This disables the logging stack dumps. */ void hUserAbort(char *format, ...) /* errAbort when a `user' error is detected. This is an error that comes * from user input. This disables the logging stack dumps. */ #if defined(__GNUC__) __attribute__((format(printf, 1, 2))) #endif ; +boolean hAllowAllTables(void); +/* Return TRUE if hg.conf's hgta.disableAllTables doesn't forbid an 'all tables' menu. */ + #endif /* HCOMMON_H */