Skip to content

Commit e5b6ea6

Browse files
committed
fix(windows): def file exports
1 parent ab9f8fd commit e5b6ea6

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Makefile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,15 @@ $(DEF_FILE):
9191
ifeq ($(PLATFORM),windows)
9292
@echo "LIBRARY js.dll" > $@
9393
@echo "EXPORTS" >> $@
94-
@echo " sqlite3_js_init" >> $@
95-
@echo " sqlitejs_version" >> $@
96-
@echo " quickjs_version" >> $@
94+
@echo " sqlite3_cloudsync_init" >> $@
95+
@echo " cloudsync_config_exists" >> $@
96+
@echo " cloudsync_context_init" >> $@
97+
@echo " cloudsync_merge_insert" >> $@
98+
@echo " cloudsync_sync_key" >> $@
99+
@echo " cloudsync_sync_table_key" >> $@
100+
@echo " cloudsync_get_auxdata" >> $@
101+
@echo " cloudsync_set_auxdata" >> $@
102+
@echo " cloudsync_payload_apply" >> $@
97103
endif
98104

99105
# Make sure the build and dist directories exist

0 commit comments

Comments
 (0)