mirror of
https://github.com/kentaromiura/NativeReactLikeInMacintosh.git
synced 2024-11-21 21:33:00 +00:00
9 lines
223 B
C
9 lines
223 B
C
#ifndef DUKBRIDGE_H
|
|
#define DUKBRIDGE_H
|
|
#include "duktape.h"
|
|
duk_ret_t DUK_DIALOG(duk_context *ctx);
|
|
duk_ret_t DUK_MessageBox(duk_context *ctx);
|
|
|
|
void emptyStack(duk_context *ctx);
|
|
void populateCtx(duk_context *ctx);
|
|
#endif |