diff options
author | Ted Gould <ted@gould.cx> | 2010-12-08 14:08:44 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-08 14:08:44 -0600 |
commit | 6c905a6e958d626df511ced154e9ed8fb867afc5 (patch) | |
tree | c866e25da37bcc927df40ac04c9c0460a6962edd /bindings/mono/ApplicationIndicator.custom | |
parent | 12d94d3b9aa17214cadec6e98831356330cead51 (diff) | |
parent | 97fcd2621c571bda84b090961e31c54104641257 (diff) | |
download | ayatana-indicator-application-6c905a6e958d626df511ced154e9ed8fb867afc5.tar.gz ayatana-indicator-application-6c905a6e958d626df511ced154e9ed8fb867afc5.tar.bz2 ayatana-indicator-application-6c905a6e958d626df511ced154e9ed8fb867afc5.zip |
Remove the library from the build
Diffstat (limited to 'bindings/mono/ApplicationIndicator.custom')
-rw-r--r-- | bindings/mono/ApplicationIndicator.custom | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/bindings/mono/ApplicationIndicator.custom b/bindings/mono/ApplicationIndicator.custom deleted file mode 100644 index fcc52d7..0000000 --- a/bindings/mono/ApplicationIndicator.custom +++ /dev/null @@ -1,26 +0,0 @@ -[DllImport ("appindicator.dll")] -static extern int app_indicator_get_status (IntPtr i); - -[DllImport ("appindicator.dll")] -static extern int app_indicator_get_category (IntPtr i); - -[DllImport ("appindicator.dll")] -static extern void app_indicator_set_status (IntPtr i, int s); - - [GLib.Property ("status")] - public Status Status { - get { - return (Status) app_indicator_get_status (Handle); - } - - set { - app_indicator_set_status (Handle, (int) value); - } - } - - [GLib.Property ("category")] - public Category Category { - get { - return (Category) app_indicator_get_category (Handle); - } - } |