summaryrefslogtreecommitdiffstats
path: root/branches/1.0/bindings/csharp/ProxyAudioConsumer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'branches/1.0/bindings/csharp/ProxyAudioConsumer.cs')
-rw-r--r--branches/1.0/bindings/csharp/ProxyAudioConsumer.cs67
1 files changed, 0 insertions, 67 deletions
diff --git a/branches/1.0/bindings/csharp/ProxyAudioConsumer.cs b/branches/1.0/bindings/csharp/ProxyAudioConsumer.cs
deleted file mode 100644
index c4ef083..0000000
--- a/branches/1.0/bindings/csharp/ProxyAudioConsumer.cs
+++ /dev/null
@@ -1,67 +0,0 @@
-/* ----------------------------------------------------------------------------
- * This file was automatically generated by SWIG (http://www.swig.org).
- * Version 1.3.39
- *
- * Do not make changes to this file unless you know what you are doing--modify
- * the SWIG interface file instead.
- * ----------------------------------------------------------------------------- */
-
-namespace org.doubango.tinyWRAP {
-
-using System;
-using System.Runtime.InteropServices;
-
-public class ProxyAudioConsumer : ProxyPlugin {
- private HandleRef swigCPtr;
-
- internal ProxyAudioConsumer(IntPtr cPtr, bool cMemoryOwn) : base(tinyWRAPPINVOKE.ProxyAudioConsumerUpcast(cPtr), cMemoryOwn) {
- swigCPtr = new HandleRef(this, cPtr);
- }
-
- internal static HandleRef getCPtr(ProxyAudioConsumer obj) {
- return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
- }
-
- ~ProxyAudioConsumer() {
- Dispose();
- }
-
- public override void Dispose() {
- lock(this) {
- if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) {
- swigCMemOwn = false;
- tinyWRAPPINVOKE.delete_ProxyAudioConsumer(swigCPtr);
- }
- swigCPtr = new HandleRef(null, IntPtr.Zero);
- GC.SuppressFinalize(this);
- base.Dispose();
- }
- }
-
- public uint pull(byte[] output, uint size) {
- uint ret = tinyWRAPPINVOKE.ProxyAudioConsumer_pull(swigCPtr, output, size);
- return ret;
- }
-
- public bool reset() {
- bool ret = tinyWRAPPINVOKE.ProxyAudioConsumer_reset(swigCPtr);
- return ret;
- }
-
- public void setCallback(ProxyAudioConsumerCallback _callback) {
- tinyWRAPPINVOKE.ProxyAudioConsumer_setCallback(swigCPtr, ProxyAudioConsumerCallback.getCPtr(_callback));
- }
-
- public virtual ulong getMediaSessionId() {
- ulong ret = tinyWRAPPINVOKE.ProxyAudioConsumer_getMediaSessionId(swigCPtr);
- return ret;
- }
-
- public static bool registerPlugin() {
- bool ret = tinyWRAPPINVOKE.ProxyAudioConsumer_registerPlugin();
- return ret;
- }
-
-}
-
-}
OpenPOWER on IntegriCloud