2016-01-10 20:07:42 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2016-07-07 17:59:29 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2016-01-10 20:07:42 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
export interface EmscFunGen {
|
|
|
|
(name: string,
|
|
|
|
ret: string,
|
|
|
|
args: string[]): ((...x: (number|string)[]) => any);
|
|
|
|
(name: string,
|
2016-01-11 02:56:32 +01:00
|
|
|
ret: "number",
|
2016-01-10 20:07:42 +01:00
|
|
|
args: string[]): ((...x: (number|string)[]) => number);
|
|
|
|
(name: string,
|
2016-01-11 02:56:32 +01:00
|
|
|
ret: "void",
|
2016-01-10 20:07:42 +01:00
|
|
|
args: string[]): ((...x: (number|string)[]) => void);
|
|
|
|
(name: string,
|
2016-01-11 02:56:32 +01:00
|
|
|
ret: "string",
|
2016-01-10 20:07:42 +01:00
|
|
|
args: string[]): ((...x: (number|string)[]) => string);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export declare namespace Module {
|
|
|
|
var cwrap: EmscFunGen;
|
2016-01-11 02:56:32 +01:00
|
|
|
|
2016-10-12 23:30:10 +02:00
|
|
|
function ccall(name: string, ret:"number"|"string", argTypes: any[], args: any[]): any
|
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
function stringToUTF8(s: string, addr: number, maxLength: number): void
|
|
|
|
|
2016-09-12 20:25:56 +02:00
|
|
|
function _free(ptr: number): void;
|
2016-01-11 02:56:32 +01:00
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
function _malloc(n: number): number;
|
2016-01-11 02:56:32 +01:00
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
function Pointer_stringify(p: number, len?: number): string;
|
2016-01-11 02:56:32 +01:00
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
function getValue(ptr: number, type: string, noSafe?: boolean): number;
|
2016-01-11 02:56:32 +01:00
|
|
|
|
2016-09-12 20:25:56 +02:00
|
|
|
function setValue(ptr: number, value: number, type: string,
|
|
|
|
noSafe?: boolean): void;
|
2016-01-11 02:56:32 +01:00
|
|
|
|
|
|
|
function writeStringToMemory(s: string,
|
|
|
|
buffer: number,
|
2016-09-12 20:25:56 +02:00
|
|
|
dontAddNull?: boolean): void;
|
2016-01-10 20:07:42 +01:00
|
|
|
}
|