Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/misc/chmlib/files/patch-chm_lib.h
16461 views
1
--- src/chm_lib.h.orig 2009-05-23 14:43:31 UTC
2
+++ src/chm_lib.h
3
@@ -82,6 +82,12 @@ struct chmUnitInfo
4
char path[CHM_MAX_PATHLEN+1];
5
};
6
7
+typedef struct chmUnitInfo chmUnitInfo;
8
+typedef struct chm_dir {
9
+ int nentries;
10
+ char **info;
11
+} chm_dir;
12
+
13
/* open an ITS archive */
14
#ifdef PPC_BSTR
15
/* RWE 6/12/2003 */
16
@@ -137,6 +143,7 @@ int chm_enumerate_dir(struct chmFile *h,
17
CHM_ENUMERATOR e,
18
void *context);
19
20
+chm_dir get_names(struct chmFile *h);
21
#ifdef __cplusplus
22
}
23
#endif
24
25