mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
13 lines
346 B
C
13 lines
346 B
C
|
|
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_LOCALSTORAGE_H
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_LOCALSTORAGE_H
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
#include "ecmascript/localstorage-db.h"
|
|
|
|
extern const JSClass localstorage_class;
|
|
extern const spidermonkeyFunctionSpec localstorage_funcs[];
|
|
extern const JSPropertySpec localstorage_props[];
|
|
|
|
#endif
|