mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[HHPCOMP]
- Avoid implicit function declarations svn path=/trunk/; revision=73697
This commit is contained in:
parent
41c7ba2971
commit
b6295d12e2
1 changed files with 13 additions and 0 deletions
|
@ -31,6 +31,10 @@
|
|||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#else
|
||||
#ifdef __REACTOS__
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#endif /* __REACTOS__ */
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
|
@ -100,6 +104,15 @@ int chmc_pmgi_add_entry(struct chmcFile *chm, const char *name, int pmgl_id);
|
|||
void chmc_pmgi_add(struct chmcFile *chm, struct chmcPmgiChunkNode *pmgi);
|
||||
void chmc_string_init(struct chmcStringChunk *node);
|
||||
|
||||
#ifdef __REACTOS__
|
||||
int chmc_uncompressed_done(struct chmcFile *chm);
|
||||
int chmc_pmgi_done(struct chmcFile *chm);
|
||||
int chmc_write(struct chmcFile *chm);
|
||||
int chmc_appendfile(struct chmcFile *chm, const char *filename, void *buf,
|
||||
size_t size );
|
||||
int chmc_pmgl_add_entry(struct chmcFile *chm, struct chmcTreeNode *entry);
|
||||
#endif /* __REACTOS__ */
|
||||
|
||||
struct chmcLzxInfo
|
||||
{
|
||||
struct chmcFile *chm;
|
||||
|
|
Loading…
Reference in a new issue