Ignore:
Timestamp:
08/22/10 20:05:34 (21 months ago)
Author:
shiretu
Message:

-- android related stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/applications/applestreamingclient/src/jnihelpers.cpp

    r85 r88  
    131131 
    132132bool CallJava(CallBackInfo &ci, Variant &parameters) { 
     133        if (ci.pEnv == NULL) { 
     134                WARN("No pEnv"); 
     135                return true; 
     136        } 
     137        if (ci.pInterface == NULL) { 
     138                WARN("No pInterface"); 
     139                return true; 
     140        } 
    133141        ci.pEnv->PushLocalFrame(128); 
    134142        if (ci.method == NULL) { 
Note: See TracChangeset for help on using the changeset viewer.