Top |
OsinfoOsList *
osinfo_oslist_new (void
);
Construct a new os list that is initially empty.
OsinfoOsList *
osinfo_oslist_new_copy (OsinfoOsList *source
);
osinfo_oslist_new_copy
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_copy()
instead.
Construct a new os list that is filled with oss
from source
OsinfoOsList * osinfo_oslist_new_filtered (OsinfoOsList *source
,OsinfoFilter *filter
);
osinfo_oslist_new_filtered
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_filtered()
instead.
Construct a new os list that is filled with oss
from source
that match filter
OsinfoOsList * osinfo_oslist_new_intersection (OsinfoOsList *sourceOne
,OsinfoOsList *sourceTwo
);
osinfo_oslist_new_intersection
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_intersection()
instead.
Construct a new os list that is filled with only the
oss that are present in both sourceOne
and sourceTwo
.
OsinfoOsList * osinfo_oslist_new_union (OsinfoOsList *sourceOne
,OsinfoOsList *sourceTwo
);
osinfo_oslist_new_union
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_union()
instead.
Construct a new os list that is filled with all the
oss that are present in either sourceOne
and sourceTwo
.