|
@@ -42,19 +42,16 @@ class virtual ['a,'data] native_library (name : string) (file_path : string) = o
|
|
|
end
|
|
|
|
|
|
type java_lib_type = (JData.jclass * string * string) option
|
|
|
-type net_lib_type = IlData.ilclass option
|
|
|
type swf_lib_type = As3hl.hl_class option
|
|
|
|
|
|
type native_libraries = {
|
|
|
mutable java_libs : (java_lib_type,unit) native_library list;
|
|
|
- mutable net_libs : (net_lib_type,unit) native_library list;
|
|
|
mutable swf_libs : (swf_lib_type,Swf.swf) native_library list;
|
|
|
mutable all_libs : string list;
|
|
|
}
|
|
|
|
|
|
let create_native_libs () = {
|
|
|
java_libs = [];
|
|
|
- net_libs = [];
|
|
|
swf_libs = [];
|
|
|
all_libs = [];
|
|
|
}
|