Files
cup_edit/examples/dart/cli_windows/native/thermion_window.h
2024-11-11 12:49:40 +08:00

14 lines
250 B
C

#pragma once
#ifdef IS_DLL
#define EMSCRIPTEN_KEEPALIVE __declspec(dllimport)
#else
#define EMSCRIPTEN_KEEPALIVE __declspec(dllexport)
#endif
extern "C" {
intptr_t create_thermion_window(int width, int height, int left, int top);
void update();
}