aboutsummaryrefslogtreecommitdiff
path: root/fake-msi.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2017-02-20 07:17:56 +0000
committerSimon Tatham <anakin@pobox.com>2017-02-20 07:17:56 +0000
commit6824aa549cbfc535debee2effe99b5a30849fdcd (patch)
treeafc84cf8fc1cd86420bd68af41871a3da39c0def /fake-msi.c
parentfbf19f95a0e843384af423449a18a96da1eaec95 (diff)
downloadwix-on-linux-6824aa549cbfc535debee2effe99b5a30849fdcd.tar.gz
wix-on-linux-6824aa549cbfc535debee2effe99b5a30849fdcd.tar.bz2
wix-on-linux-6824aa549cbfc535debee2effe99b5a30849fdcd.zip
Start of a fake msi.dll.
This seems to be the next function WiX expects from its native-code DLLs. So far it's just a stub.
Diffstat (limited to 'fake-msi.c')
-rw-r--r--fake-msi.c15
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
10uint32_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}