diff options
Diffstat (limited to 'fake-winterop.c')
-rw-r--r-- | fake-winterop.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fake-winterop.c b/fake-winterop.c index 828b8fa..ae4b8ef 100644 --- a/fake-winterop.c +++ b/fake-winterop.c | |||
@@ -86,15 +86,17 @@ uint32_t CreateCabBegin(const char16_t *wzCab, const char16_t *wzCabDir, | |||
86 | uint32_t dwMaxThresh, int compression, | 86 | uint32_t dwMaxThresh, int compression, |
87 | void **out_ctx) | 87 | void **out_ctx) |
88 | { | 88 | { |
89 | fprintf(stderr, "CreateCabBegin(\"%s\", \"%s\", ...)!\n", | 89 | fprintf(stderr, "CreateCabBegin(\"%s\", \"%s\", ...)\n", |
90 | ascii(wzCab, true), ascii(wzCabDir, true)); | 90 | ascii(wzCab, true), ascii(wzCabDir, true)); |
91 | *out_ctx = (void *)10; | ||
91 | return 0; | 92 | return 0; |
92 | } | 93 | } |
93 | 94 | ||
94 | uint32_t CreateCabAddFile(const char16_t *wzFile, const char16_t *wzToken, | 95 | uint32_t CreateCabAddFile(const char16_t *wzFile, const char16_t *wzToken, |
95 | void *pmfHash, void *ctx) | 96 | void *pmfHash, void *ctx) |
96 | { | 97 | { |
97 | fprintf(stderr, "CreateCabAddFile!\n"); | 98 | fprintf(stderr, "CreateCabAddFile(%p,%s,%s)\n", ctx, |
99 | ascii(wzFile, true), ascii(wzToken, false)); | ||
98 | return 0; | 100 | return 0; |
99 | } | 101 | } |
100 | 102 | ||