Changed namespace.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2720 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
036599fb68
commit
1fdc0a26a7
|
@ -1,8 +1,8 @@
|
|||
all: $(MODNAME).so
|
||||
|
||||
$(MODNAME).so:
|
||||
gmcs -debug -unsafe -t:library -keyfile:public.snk \
|
||||
-out:Freeswitch.dll -reference:Mono.Posix.dll \
|
||||
/usr/local/freeswitch/bin/gmcs -debug -unsafe -t:library -keyfile:public.snk \
|
||||
-out:FreeSwitch.dll -reference:Mono.Posix.dll \
|
||||
Properties/AssemblyInfo.cs \
|
||||
Marshaling/Types/ApiInterfaceMarshal.cs \
|
||||
Marshaling/Types/ApplicationInterfaceMarshal.cs \
|
||||
|
@ -24,6 +24,7 @@ $(MODNAME).so:
|
|||
Marshaling/Types/IOEventHooksMarshal.cs \
|
||||
Marshaling/Types/LoadableModuleInterfaceMarshal.cs \
|
||||
Marshaling/Types/LoadableModuleMarshal.cs \
|
||||
Marshaling/Types/StreamHandleMarshal.cs \
|
||||
Marshaling/Types/TypesMarshal.cs \
|
||||
Marshaling/BufferMarshaler.cs \
|
||||
Marshaling/CallerExtensionMarshaler.cs \
|
||||
|
@ -57,6 +58,8 @@ $(MODNAME).so:
|
|||
Types/ChannelTimetable.cs \
|
||||
Types/CoreSession.cs \
|
||||
Types/DtmfCallbackFunction.cs \
|
||||
Types/InputCallbackFunction.cs \
|
||||
Types/InputType.cs \
|
||||
Types/Event.cs \
|
||||
Types/FileHandle.cs \
|
||||
Types/LoadableModule.cs \
|
||||
|
@ -67,12 +70,10 @@ $(MODNAME).so:
|
|||
Types/StreamHandle.cs \
|
||||
Types/TextChannel.cs \
|
||||
Common.cs \
|
||||
Core.cs \
|
||||
Ivr.cs \
|
||||
Module.cs \
|
||||
|
||||
clean:
|
||||
rm -fr *.dll
|
||||
|
||||
install:
|
||||
cp -f Freeswitch.dll /usr/local/freeswitch/lib/
|
||||
cp -f FreeSwitch.dll /usr/local/freeswitch/lib/
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class BufferMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
@ -60,14 +60,14 @@ namespace FreeSwitch.NET.Marshaling
|
|||
|
||||
public IntPtr MarshalManagedToNative(object obj)
|
||||
{
|
||||
FreeSwitch.NET.Types.Buffer buffer = (FreeSwitch.NET.Types.Buffer)obj;
|
||||
FreeSwitch.Types.Buffer buffer = (FreeSwitch.Types.Buffer)obj;
|
||||
|
||||
return buffer.marshaledObject.Handle;
|
||||
}
|
||||
|
||||
public object MarshalNativeToManaged(IntPtr bufferPtr)
|
||||
{
|
||||
FreeSwitch.NET.Types.Buffer buffer = new FreeSwitch.NET.Types.Buffer();
|
||||
FreeSwitch.Types.Buffer buffer = new FreeSwitch.Types.Buffer();
|
||||
BufferMarshal bufferMarshal = new BufferMarshal();
|
||||
|
||||
Marshal.PtrToStructure(bufferPtr, bufferMarshal);
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class CallerExtensionMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class CallerProfileMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class ChannelMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class ChannelTimetableMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class CoreSessionMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,11 +31,11 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class EventMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class FileHandleMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class MemoryPoolMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,11 +31,11 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling
|
||||
namespace FreeSwitch.Marshaling
|
||||
{
|
||||
class StreamHandleMarshaler : ICustomMarshaler
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class ApiInterfaceMarshal
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class ApplicationInterfaceMarshal
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class BufferMarshal
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class CallerExtensionMarshal
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class CallerProfileMarshal
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
internal enum ChannelFlagMarshal
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class ChannelMarshal
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
internal enum ChannelStateMarshal
|
||||
{
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class ChannelTimetableMarshal
|
||||
|
|
|
@ -30,9 +30,9 @@
|
|||
*
|
||||
*/
|
||||
using System;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
internal class CodecImplementationMarshal
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class CodecInterfaceMarshal
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Text;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
internal class CodecMarshal
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
internal enum CodecTypesMarshal
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ using System;
|
|||
using System.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack=1)]
|
||||
internal class CoreSessionMarshal
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class EventMarshal
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class FileHandleMarshal
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class FrameMarshal
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class IOEventHooksMarshal
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class LoadableModuleInterfaceMarshal
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
|
||||
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
internal class StreamHandleMarshal
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Marshaling.Types
|
||||
namespace FreeSwitch.Marshaling.Types
|
||||
{
|
||||
public delegate
|
||||
Status DtmfCallbackFunctionMarshal(
|
||||
|
|
|
@ -35,9 +35,9 @@ using System.Reflection;
|
|||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using FreeSwitch.NET;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Modules;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Modules;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
{
|
||||
|
|
|
@ -33,9 +33,9 @@ using System;
|
|||
using System.Collections;
|
||||
using System.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Modules
|
||||
namespace FreeSwitch.Modules
|
||||
{
|
||||
public class Api
|
||||
{
|
||||
|
|
|
@ -33,11 +33,11 @@ using System;
|
|||
using System.Collections;
|
||||
using System.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Marshaling;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Modules
|
||||
namespace FreeSwitch.Modules
|
||||
{
|
||||
public class Application
|
||||
{
|
||||
|
|
|
@ -32,11 +32,11 @@
|
|||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
namespace FreeSwitch
|
||||
{
|
||||
public partial class Switch
|
||||
{
|
||||
|
|
|
@ -32,10 +32,10 @@
|
|||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
namespace FreeSwitch
|
||||
{
|
||||
public partial class Switch
|
||||
{
|
||||
|
|
|
@ -34,7 +34,7 @@ using System.Runtime.CompilerServices;
|
|||
using System.Diagnostics;
|
||||
using System.Text;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
namespace FreeSwitch
|
||||
{
|
||||
public partial class Switch
|
||||
{
|
||||
|
|
|
@ -32,10 +32,10 @@
|
|||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
namespace FreeSwitch
|
||||
{
|
||||
public partial class Switch
|
||||
{
|
||||
|
|
|
@ -32,11 +32,11 @@
|
|||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
namespace FreeSwitch
|
||||
{
|
||||
public partial class Switch
|
||||
{
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
namespace FreeSwitch
|
||||
{
|
||||
/*
|
||||
* SWITCH_DECLARE(switch_status_t) switch_loadable_module_load_module(char *dir, char *fname)
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Types;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET
|
||||
namespace FreeSwitch
|
||||
{
|
||||
/*
|
||||
* SWITCH_DECLARE(switch_status_t) switch_loadable_module_load_module(char *dir, char *fname)
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ using System.Collections;
|
|||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
/*
|
||||
public class ApplicationInterface
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class Buffer
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public enum CallCause
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class CallerExtension
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class CallerProfile
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
/*
|
||||
* char *name;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public enum ChannelFlag
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public enum ChannelState
|
||||
{
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class ChannelTimetable
|
||||
{
|
||||
|
|
|
@ -33,9 +33,9 @@ using System;
|
|||
using System.Collections;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
/*
|
||||
* uint32_t id;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public delegate Status DtmfCallbackFunction(CoreSession session, string dtmf);
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ using System.Collections;
|
|||
using System.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public enum Priority
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class FileHandle
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.Marshaling;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public delegate Status InputCallbackFunction(
|
||||
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(StreamHandleMarshaler))]
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public enum InputType
|
||||
{
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class LoadableModule
|
||||
{
|
||||
|
|
|
@ -33,9 +33,9 @@ using System;
|
|||
using System.Collections;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.Marshaling;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public delegate Status WriteFunction(
|
||||
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(StreamHandleMarshaler))]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class MemoryPool
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling;
|
||||
using FreeSwitch.Marshaling;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public delegate Status ModuleReload();
|
||||
public delegate bool ModulePause();
|
||||
|
|
|
@ -34,7 +34,7 @@ using System.Collections;
|
|||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
/*
|
||||
public class ApplicationInterface
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public enum Status
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using FreeSwitch.NET.Marshaling.Types;
|
||||
using FreeSwitch.Marshaling.Types;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public class StreamHandle
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace FreeSwitch.NET.Types
|
||||
namespace FreeSwitch.Types
|
||||
{
|
||||
public enum TextChannel
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue