18 lines
315 B
C++
Executable File
18 lines
315 B
C++
Executable File
#ifndef __PLUGIN_JAVA_DATA_H__
|
|
#define __PLUGIN_JAVA_DATA_H__
|
|
|
|
#include <string>
|
|
#include <jni.h>
|
|
|
|
namespace anysdk { namespace framework {
|
|
|
|
typedef struct _PluginJavaData_
|
|
{
|
|
jobject jobj;
|
|
std::string jclassName;
|
|
} PluginJavaData;
|
|
|
|
}} //namespace anysdk { namespace framework {
|
|
|
|
#endif // __PLUGIN_JAVA_DATA_H__
|