Advertisement
Guest User

Untitled

a guest
Mar 14th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Vala 0.36 KB | None | 0 0
  1.         [CCode (cname = "vaQueryConfigProfiles")]
  2.         public Status _query_config_profiles([CCode (array_length="false")] Profile[] profiles, ref int num_profiles);
  3.         public Status query_config_profiles(ref Profile[] profiles) {
  4.             var len = profiles.length;
  5.             var status = _query_config_profiles(profiles, ref len);
  6.             profiles.length = len;
  7.             return status;
  8.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement