SMSEncoder.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* ----------------------------------------------------------------------------
  2. * This file was automatically generated by SWIG (http://www.swig.org).
  3. * Version 2.0.9
  4. *
  5. * Do not make changes to this file unless you know what you are doing--modify
  6. * the SWIG interface file instead.
  7. * ----------------------------------------------------------------------------- */
  8. namespace org.doubango.tinyWRAP {
  9. using System;
  10. using System.Runtime.InteropServices;
  11. public class SMSEncoder : IDisposable {
  12. private HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal SMSEncoder(IntPtr cPtr, bool cMemoryOwn) {
  15. swigCMemOwn = cMemoryOwn;
  16. swigCPtr = new HandleRef(this, cPtr);
  17. }
  18. internal static HandleRef getCPtr(SMSEncoder obj) {
  19. return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~SMSEncoder() {
  22. Dispose();
  23. }
  24. public virtual void Dispose() {
  25. lock(this) {
  26. if (swigCPtr.Handle != IntPtr.Zero) {
  27. if (swigCMemOwn) {
  28. swigCMemOwn = false;
  29. tinyWRAPPINVOKE.delete_SMSEncoder(swigCPtr);
  30. }
  31. swigCPtr = new HandleRef(null, IntPtr.Zero);
  32. }
  33. GC.SuppressFinalize(this);
  34. }
  35. }
  36. public static RPMessage encodeSubmit(int mr, string smsc, string destination, string ascii) {
  37. IntPtr cPtr = tinyWRAPPINVOKE.SMSEncoder_encodeSubmit(mr, smsc, destination, ascii);
  38. RPMessage ret = (cPtr == IntPtr.Zero) ? null : new RPMessage(cPtr, true);
  39. return ret;
  40. }
  41. public static RPMessage encodeDeliver(int mr, string smsc, string originator, string ascii) {
  42. IntPtr cPtr = tinyWRAPPINVOKE.SMSEncoder_encodeDeliver(mr, smsc, originator, ascii);
  43. RPMessage ret = (cPtr == IntPtr.Zero) ? null : new RPMessage(cPtr, true);
  44. return ret;
  45. }
  46. public static RPMessage encodeACK(int mr, string smsc, string destination, bool forSUBMIT) {
  47. IntPtr cPtr = tinyWRAPPINVOKE.SMSEncoder_encodeACK(mr, smsc, destination, forSUBMIT);
  48. RPMessage ret = (cPtr == IntPtr.Zero) ? null : new RPMessage(cPtr, true);
  49. return ret;
  50. }
  51. public static RPMessage encodeError(int mr, string smsc, string destination, bool forSUBMIT) {
  52. IntPtr cPtr = tinyWRAPPINVOKE.SMSEncoder_encodeError(mr, smsc, destination, forSUBMIT);
  53. RPMessage ret = (cPtr == IntPtr.Zero) ? null : new RPMessage(cPtr, true);
  54. return ret;
  55. }
  56. public static SMSData decode(IntPtr data, uint size, bool MobOrig) {
  57. IntPtr cPtr = tinyWRAPPINVOKE.SMSEncoder_decode(data, size, MobOrig);
  58. SMSData ret = (cPtr == IntPtr.Zero) ? null : new SMSData(cPtr, true);
  59. return ret;
  60. }
  61. }
  62. }