1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
//
// Description:
// SWFDisplayItem Native Interface
//
// Authors:
// Jonathan Shore <jshore@e-shuppan.com>
// Based on php wrapper developed by <dave@opaque.net>
//
// Copyright:
// Copyright 2001 E-Publishing Group Inc. Permission is granted to use or
// modify this code provided that the original copyright notice is included.
//
// This software is distributed with no warrantee of liability, merchantability,
// or fitness for a specific purpose.
//
#include <jni.h>
#ifndef _Included_SWFDisplayItem
#define _Included_SWFDisplayItem
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: SWFDisplayItem
* Method: nDestroy
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nDestroy
(JNIEnv *, jobject, jint);
/*
* Class: SWFDisplayItem
* Method: nRotate
* Signature: (IF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nRotate
(JNIEnv *, jobject, jint, jfloat);
/*
* Class: SWFDisplayItem
* Method: nRotateTo
* Signature: (IF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nRotateTo
(JNIEnv *, jobject, jint, jfloat);
/*
* Class: SWFDisplayItem
* Method: nMove
* Signature: (IFF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nMove
(JNIEnv *, jobject, jint, jfloat, jfloat);
/*
* Class: SWFDisplayItem
* Method: nMoveTo
* Signature: (IFF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nMoveTo
(JNIEnv *, jobject, jint, jfloat, jfloat);
/*
* Class: SWFDisplayItem
* Method: nScale
* Signature: (IFF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nScale
(JNIEnv *, jobject, jint, jfloat, jfloat);
/*
* Class: SWFDisplayItem
* Method: nScaleTo
* Signature: (IFF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nScaleTo
(JNIEnv *, jobject, jint, jfloat, jfloat);
/*
* Class: SWFDisplayItem
* Method: nSkewX
* Signature: (IF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nSkewX
(JNIEnv *, jobject, jint, jfloat);
/*
* Class: SWFDisplayItem
* Method: nSkewXTo
* Signature: (IF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nSkewXTo
(JNIEnv *, jobject, jint, jfloat);
/*
* Class: SWFDisplayItem
* Method: nSkewY
* Signature: (IF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nSkewY
(JNIEnv *, jobject, jint, jfloat);
/*
* Class: SWFDisplayItem
* Method: nSkewYTo
* Signature: (IF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nSkewYTo
(JNIEnv *, jobject, jint, jfloat);
/*
* Class: SWFDisplayItem
* Method: nGetDepth
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_SWFDisplayItem_nGetDepth
(JNIEnv *, jobject, jint);
/*
* Class: SWFDisplayItem
* Method: nSetDepth
* Signature: (II)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nSetDepth
(JNIEnv *, jobject, jint, jint);
/*
* Class: SWFDisplayItem
* Method: nRemove
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nRemove
(JNIEnv *, jobject, jint);
/*
* Class: SWFDisplayItem
* Method: nSetName
* Signature: (ILjava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nSetName
(JNIEnv *, jobject, jint, jstring);
/*
* Class: SWFDisplayItem
* Method: nSetRatio
* Signature: (IF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nSetRatio
(JNIEnv *, jobject, jint, jfloat);
/*
* Class: SWFDisplayItem
* Method: nAddColor
* Signature: (IIIII)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nAddColor
(JNIEnv *, jobject, jint, jint, jint, jint, jint);
/*
* Class: SWFDisplayItem
* Method: nMultColor
* Signature: (IFFFF)V
*/
JNIEXPORT void JNICALL Java_SWFDisplayItem_nMultColor
(JNIEnv *, jobject, jint, jfloat, jfloat, jfloat, jfloat);
#ifdef __cplusplus
}
#endif
#endif
|