diff options
| author | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-19 12:55:42 +0000 |
|---|---|---|
| committer | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-19 12:55:42 +0000 |
| commit | 844ecc37072d515513177c65a8c9dc35c9cdfc1a (patch) | |
| tree | 733b1fe039c0c37095a594b66d5076f3f5a0153d /src/httrack-library.h | |
| parent | 25adbdabb47499fe641c7bd9595024ff82667058 (diff) | |
httrack 3.33.16
Diffstat (limited to 'src/httrack-library.h')
| -rw-r--r-- | src/httrack-library.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/httrack-library.h b/src/httrack-library.h index aeea70f..2ee2511 100644 --- a/src/httrack-library.h +++ b/src/httrack-library.h @@ -57,6 +57,8 @@ HTSEXT_API const char* hts_is_available(void); /* Other functions */ HTSEXT_API int hts_resetvar(void); HTSEXT_API int hts_buildtopindex(httrackp* opt,char* path,char* binpath); +HTSEXT_API char* hts_getcategories(char* path, int type); +HTSEXT_API char* hts_getcategory(char* filename); /* Catch-URL */ HTSEXT_API T_SOC catch_url_init_std(int* port_prox,char* adr_prox); @@ -111,11 +113,17 @@ HTSEXT_API char* unescape_http_unharm(char* s, int no_high); HTSEXT_API char* antislash_unescaped(char* s); HTSEXT_API void escape_remove_control(char* s); +/* Debugging */ +HTSEXT_API void hts_debug(int level); + /* Portable directory API */ typedef struct find_handle_struct find_handle_struct; typedef find_handle_struct* find_handle; + typedef struct topindex_chain { + int level; /* sort level */ + char* category; /* category */ char name[2048]; /* path */ struct topindex_chain* next; /* next element */ } topindex_chain ; |
