diff options
Diffstat (limited to 'fake-msi.c')
-rw-r--r-- | fake-msi.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fake-msi.c b/fake-msi.c new file mode 100644 index 0000000..1302e8c --- /dev/null +++ b/fake-msi.c | |||
@@ -0,0 +1,15 @@ | |||
1 | #include <stdio.h> | ||
2 | #include <stdlib.h> | ||
3 | #include <stdint.h> | ||
4 | #include <stdbool.h> | ||
5 | #include <stdarg.h> | ||
6 | #include <string.h> | ||
7 | #include <uchar.h> | ||
8 | #include <err.h> | ||
9 | |||
10 | uint32_t MsiGetFileVersionW(const char16_t *filename, | ||
11 | char16_t *version, uint32_t *version_size, | ||
12 | char16_t *language, uint32_t *language_size) | ||
13 | { | ||
14 | errx(1, "NYI: MsiGetFileVersion"); | ||
15 | } | ||