1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-23 01:44:22 +00:00

Implemented thread naming for mac + linux. Minor string tweaks. Android changes. Couple of other minor changes.

This commit is contained in:
Julian Storer 2011-02-02 18:15:57 +00:00
parent 413e00631b
commit c26ac47dff
35 changed files with 788 additions and 256 deletions

View file

@ -166,11 +166,12 @@ public:
}
}
//==============================================================================
inline operator jobject() const throw() { return obj; }
inline jobject get() const throw() { return obj; }
inline JNIEnv* getEnv() const throw() { return env; }
//==============================================================================
#define DECLARE_CALL_TYPE_METHOD(returnType, typeName) \
returnType call##typeName##Method (jmethodID methodID, ... ) \
{ \
@ -202,6 +203,7 @@ public:
}
private:
//==============================================================================
JNIEnv* env;
jobject obj;