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