/usr/share/vala/vapi/friends-0.1.vapi is in libfriends-dev 0.1.2+14.04.20131108.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | /* friends-0.1.vapi generated by valac 0.18.1, do not modify. */
[CCode (gir_namespace = "Friends", gir_version = "0.1")]
namespace Friends {
[CCode (cheader_filename = "friends.h")]
public class Dispatcher : GLib.Object {
public Dispatcher () throws GLib.IOError;
public string contacts (uint? account_id) throws GLib.IOError;
public async void contacts_async (uint? account_id, out string result) throws GLib.IOError;
public string @delete (uint account_id, string message_id) throws GLib.IOError;
public async void delete_async (uint account_id, string message_id, out string result) throws GLib.IOError;
public string[] features (string protocol) throws GLib.Error;
public string home (uint? account_id) throws GLib.IOError;
public async void home_async (uint? account_id, out string result) throws GLib.IOError;
public string like (uint account_id, string message_id) throws GLib.IOError;
public async void like_async (uint account_id, string message_id, out string result) throws GLib.IOError;
public void messaging_menu_clear () throws GLib.IOError;
public void refresh () throws GLib.IOError;
public string retweet (uint account_id, string message_id) throws GLib.IOError;
public async void retweet_async (uint account_id, string message_id, out string result) throws GLib.IOError;
public string search (uint? account_id, string query) throws GLib.IOError;
public async void search_async (uint? account_id, string query, out string result) throws GLib.IOError;
public string send_message (uint? account_id, string message) throws GLib.IOError;
public async void send_message_async (uint? account_id, string message, out string result) throws GLib.IOError;
public string send_reply (uint account_id, string message_id, string message) throws GLib.IOError;
public async void send_reply_async (uint account_id, string message_id, string message, out string result) throws GLib.IOError;
public string shorten (string url) throws GLib.IOError;
public string unlike (uint account_id, string message_id) throws GLib.IOError;
public async void unlike_async (uint account_id, string message_id, out string result) throws GLib.IOError;
public string upload (uint account_id, string uri, string description) throws GLib.IOError;
public async void upload_async (uint account_id, string uri, string description, out string result_url) throws GLib.IOError;
public string wall (uint? account_id) throws GLib.IOError;
public async void wall_async (uint? account_id, out string result) throws GLib.IOError;
}
[CCode (cheader_filename = "friends.h")]
public class Utils : GLib.Object {
public Utils ();
public string create_time_string (string t);
public string? get_avatar_path (string url);
}
}
|