aboutsummaryrefslogtreecommitdiff
path: root/bindings/mono/ApplicationIndicator.custom
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-12-08 14:08:44 -0600
committerTed Gould <ted@gould.cx>2010-12-08 14:08:44 -0600
commit6c905a6e958d626df511ced154e9ed8fb867afc5 (patch)
treec866e25da37bcc927df40ac04c9c0460a6962edd /bindings/mono/ApplicationIndicator.custom
parent12d94d3b9aa17214cadec6e98831356330cead51 (diff)
parent97fcd2621c571bda84b090961e31c54104641257 (diff)
downloadayatana-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.custom26
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);
- }
- }