xwords/xwords4/android/scripts/getsigs.sh
eehouse 49402ed218 Get comms info (host name, etc.) from user and pass it through to the
send proc.  Along the way, write jni code to instantiate a new object
including setting enums.  *Now* I'm ready for networking....
2010-01-30 20:06:06 +00:00

11 lines
308 B
Bash
Executable file

#!/bin/sh
BASE=$(dirname $0)
cd $BASE/../XWords4/bin/classes
javah -o /tmp/javah$$.txt org.eehouse.android.xw4.jni.XwJNI
javap -s org.eehouse.android.xw4.jni.DrawCtx
javap -s org.eehouse.android.xw4.jni.XW_UtilCtxt
javap -s org.eehouse.android.xw4.jni.CommsAddrRec
cat /tmp/javah$$.txt
rm /tmp/javah$$.txt