Differences From Artifact [967e324656]:
- File libdact.c — part of check-in [ca6f138a57] at 2004-02-28 00:22:20 on branch trunk — More changes to fix libdact and dact on Win32 (user: rkeene size: 146)
To Artifact [b4e7b72b38]:
- File libdact.c — part of check-in [5c0d91e52a] at 2004-04-16 00:17:26 on branch trunk — More work on making DACT 64bit/largefile compatible. (user: rkeene size: 250)
1 2 3 4 5 6 7 8 9 |
#include "dact.h"
#include "dact_common.h"
int dact_BuffToBuffDecompress(void) {
return(0);
}
int dact_BuffToBuffCompress(void) {
return(0);
}
| > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#include "dact.h"
#include "dact_common.h"
int dact_init(void) {
}
void *dact_openfile(const char *pathname) {
}
int dact_BuffToBuffDecompress(void) {
dact_init();
return(0);
}
int dact_BuffToBuffCompress(void) {
dact_init();
return(0);
}
|