Details
OobsShare
typedef struct {
GObject parent;
} OobsShare;
oobs_share_get_path ()
const gchar* oobs_share_get_path (OobsShare *share);
Returns the path that share shares.
share : |
An OobsShare.
|
Returns : |
A pointer to the shared path as a string.
This string must not be freed, modified or stored.
|
oobs_share_set_path ()
void oobs_share_set_path (OobsShare *share,
const gchar *path);
Sets the shared path of share to be path,
overwriting the previous one.
share : |
An OobsShare.
|
path : |
A new shared path for share.
|