2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2010-10-21 00:44:03 +00:00
|
|
|
|
|
|
|
#ifndef APKOpen_h
|
|
|
|
#define APKOpen_h
|
|
|
|
|
2012-03-08 18:25:44 +00:00
|
|
|
#include <jni.h>
|
|
|
|
|
2011-09-29 04:39:03 +00:00
|
|
|
#ifndef NS_EXPORT
|
|
|
|
#define NS_EXPORT __attribute__ ((visibility("default")))
|
|
|
|
#endif
|
|
|
|
|
2010-10-21 00:44:03 +00:00
|
|
|
struct mapping_info {
|
|
|
|
char * name;
|
|
|
|
uintptr_t base;
|
|
|
|
size_t len;
|
|
|
|
size_t offset;
|
|
|
|
};
|
|
|
|
|
2010-10-29 19:22:28 +00:00
|
|
|
const struct mapping_info * getLibraryMapping();
|
|
|
|
|
2012-03-08 18:25:44 +00:00
|
|
|
static const int SUCCESS = 0;
|
|
|
|
static const int FAILURE = 1;
|
|
|
|
void JNI_Throw(JNIEnv* jenv, const char* classname, const char* msg);
|
|
|
|
|
2010-10-21 00:44:03 +00:00
|
|
|
#endif /* APKOpen_h */
|