00001 #include <alp/bundlemgr.h> 00002 #include <alp/prv/bundlemgr_prv.h> 00003 00004 #define JAM_STORE "/var/opt/alp/data/lib/jvlite/jam_store/" 00005 #define JAVA_ICON_RESOURCE "icon.png" 00006 00007 struct java_program { 00008 int id; 00009 gchar * name; 00010 }; 00011 00012 int java_sync(int * count_p, struct java_program ** data_p); 00013 int java_install(int jar, int url, const gchar * target, const gchar * updateurl, int * id_p, gchar ** name_p); 00014 int java_delete(int id); 00015 int java_boot(); 00016 gchar * java_path(int midlet, const char * ext); 00017 00018 00019