forked from espruino/Espruino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsnative.h
More file actions
44 lines (37 loc) · 1.24 KB
/
jsnative.h
File metadata and controls
44 lines (37 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* This file is part of Espruino, a JavaScript interpreter for Microcontrollers
*
* Copyright (C) 2013 Gordon Williams <gw@pur3.co.uk>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* ----------------------------------------------------------------------------
* For calling built-in functions
* ----------------------------------------------------------------------------
*/
#ifndef JSNATIVE_H
#define JSNATIVE_H
#include "jsutils.h"
#include "jsvar.h"
#include "jswrapper.h"
#include <stdint.h> // uint32_t
#if defined(__WORDSIZE) && __WORDSIZE == 64
#define JSWAT_IS_64BIT(N) (\
(N)==JSWAT_JSVAR || \
(N)==JSWAT_ARGUMENT_ARRAY || \
(N)==JSWAT_JSVARFLOAT \
)
#else
#define JSWAT_IS_64BIT(N) (\
(N)==JSWAT_JSVARFLOAT \
)
#endif
/** argumentSpecifier is actually a set of JsnArgumentType. The one at bit 0
* is the return type
*/
JsVar *jsnCallFunction(void *function, JsnArgumentType argumentSpecifier, JsVar *thisParam, JsVar **paramData, int paramCount) ;
/** Perform sanity tests to ensure that jsnCallFunction is working as expected */
void jsnSanityTest();
#endif //JSNATIVE_H