2010-01-02 19:10:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef _ANDDICT_H_
|
|
|
|
#define _ANDDICT_H_
|
|
|
|
|
|
|
|
#include "dictnry.h"
|
2010-02-09 14:22:59 +00:00
|
|
|
#include "comtypes.h"
|
2010-02-11 13:27:09 +00:00
|
|
|
#include "jniutlswrapper.h"
|
2010-01-02 19:10:08 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
dict_splitFaces( DictionaryCtxt* dict, const XP_U8* bytes,
|
|
|
|
XP_U16 nBytes, XP_U16 nFaces );
|
|
|
|
|
2010-02-11 13:27:09 +00:00
|
|
|
DictionaryCtxt* makeDict( MPFORMAL JNIEnv *env, JNIUtilCtxt* jniutil,
|
2010-01-25 02:49:14 +00:00
|
|
|
jbyteArray bytes );
|
2010-01-02 19:10:08 +00:00
|
|
|
|
2010-02-09 14:22:59 +00:00
|
|
|
DictionaryCtxt* and_dictionary_make_empty( MPFORMAL_NOCOMMA );
|
2010-01-02 19:10:08 +00:00
|
|
|
|
2010-02-11 13:27:09 +00:00
|
|
|
jobject and_dictionary_getChars( JNIEnv* env, DictionaryCtxt* dict );
|
|
|
|
|
2010-01-02 19:10:08 +00:00
|
|
|
#endif
|