diff options
| author | Xin LI <delphij@FreeBSD.org> | 2015-06-10 19:06:05 +0000 | 
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2015-06-10 19:06:05 +0000 | 
| commit | 76c08169d47becb14ee96abce87cb4167fd159f9 (patch) | |
| tree | 683691b945591f3b3198540865fd167c1cc12a2f /src/cdf.h | |
| parent | 7e650197bfa22668160695ec55b6ed3e3da63f43 (diff) | |
Diffstat (limited to 'src/cdf.h')
| -rw-r--r-- | src/cdf.h | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/src/cdf.h b/src/cdf.h index 64e3648ca15cc..cee8d771e3ba8 100644 --- a/src/cdf.h +++ b/src/cdf.h @@ -314,12 +314,7 @@ int cdf_read_property_info(const cdf_stream_t *, const cdf_header_t *, uint32_t,  int cdf_read_user_stream(const cdf_info_t *, const cdf_header_t *,      const cdf_sat_t *, const cdf_sat_t *, const cdf_stream_t *,      const cdf_dir_t *, const char *, cdf_stream_t *); -#define cdf_read_catalog(info, header, sat, ssat, stream, dir, scn) \ -    cdf_read_user_stream(info, header, sat, ssat, stream, dir, "Catalog", \ -    scn) -#define cdf_read_encrypted_package(info, header, sat, ssat, stream, dir, scn) \ -    cdf_read_user_stream(info, header, sat, ssat, stream, dir, \ -    "EncryptedPackage", scn) +int cdf_find_stream(const cdf_dir_t *, const char *, int);  int cdf_read_summary_info(const cdf_info_t *, const cdf_header_t *,      const cdf_sat_t *, const cdf_sat_t *, const cdf_stream_t *,      const cdf_dir_t *, cdf_stream_t *); @@ -339,7 +334,7 @@ char *cdf_u16tos8(char *, size_t, const uint16_t *);  #ifdef CDF_DEBUG  void cdf_dump_header(const cdf_header_t *);  void cdf_dump_sat(const char *, const cdf_sat_t *, size_t); -void cdf_dump(void *, size_t); +void cdf_dump(const void *, size_t);  void cdf_dump_stream(const cdf_header_t *, const cdf_stream_t *);  void cdf_dump_dir(const cdf_info_t *, const cdf_header_t *, const cdf_sat_t *,      const cdf_sat_t *, const cdf_stream_t *, const cdf_dir_t *); | 
