mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
18 lines
289 B
C
18 lines
289 B
C
#ifndef EL__ECMASCRIPT_QUICKJS_DOCUMENT_H
|
|
#define EL__ECMASCRIPT_QUICKJS_DOCUMENT_H
|
|
|
|
#include <quickjs/quickjs.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
JSValue getDocument(JSContext *ctx, void *doc);
|
|
JSValue getDocument2(JSContext *ctx, void *doc);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|