This is the binary distribution of racket-webview

This commit is contained in:
2026-04-05 14:49:27 +02:00
parent 291bb0c545
commit b0ed617c50
149 changed files with 5047 additions and 28 deletions

18
rktwebview_global.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef RKTWEBVIEW_GLOBAL_H
#define RKTWEBVIEW_GLOBAL_H
#if defined(RKTWEBVIEW_LIBRARY)
#ifdef _WIN32
#define RKTWEBVIEW_EXPORT __declspec(dllexport)
#else
#define RKTWEBVIEW_EXPORT
#endif
#else
#ifdef _WIN32
#define RKTWEBVIEW_EXPORT __declspec(dllimport)
#else
#define RKTWEBVIEW_EXPORT
#endif
#endif
#endif // RKTWEBVIEW_GLOBAL_H