mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-27 09:58:45 +01:00
export board_canFlip
This commit is contained in:
parent
650d9f5b45
commit
2f59836fc4
2 changed files with 12 additions and 0 deletions
|
@ -1022,6 +1022,17 @@ Java_org_eehouse_android_xw4_jni_XwJNI_board_1focusChanged
|
|||
return result;
|
||||
}
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_org_eehouse_android_xw4_jni_XwJNI_board_1canFlip
|
||||
( JNIEnv* env, jclass C, jint gamePtr )
|
||||
{
|
||||
jboolean result;
|
||||
XWJNI_START();
|
||||
result = board_canFlip( state->game.board );
|
||||
XWJNI_END();
|
||||
return result;
|
||||
}
|
||||
|
||||
JNIEXPORT jboolean JNICALL
|
||||
Java_org_eehouse_android_xw4_jni_XwJNI_board_1handleKey
|
||||
( JNIEnv* env, jclass C, jint gamePtr, jobject jkey, jboolean jup,
|
||||
|
|
|
@ -146,6 +146,7 @@ public class XwJNI {
|
|||
public static native String board_formatRemainingTiles( int gamePtr );
|
||||
public static native int board_getFocusOwner( int gamePtr );
|
||||
public static native boolean board_focusChanged( int gamePtr, int typ );
|
||||
public static native boolean board_canFlip( int gamePtr );
|
||||
|
||||
public enum XP_Key {
|
||||
XP_KEY_NONE,
|
||||
|
|
Loading…
Reference in a new issue