[Freeswitch-branches] [commit] r2681 - in freeswitch/branches/james/src/dotnet: . Marshaling Marshaling/Types Modules Switch Types
Freeswitch SVN
james at freeswitch.org
Wed Sep 13 11:22:02 EDT 2006
Author: james
Date: Wed Sep 13 11:21:53 2006
New Revision: 2681
Modified:
freeswitch/branches/james/src/dotnet/Common.cs
freeswitch/branches/james/src/dotnet/FreeSwitch.NET.csproj
freeswitch/branches/james/src/dotnet/Marshaling/BufferMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/CallerExtensionMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/CallerProfileMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/ChannelMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/ChannelTimetableMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/CoreSessionMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/EventMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/FileHandleMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/MemoryPoolMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/StreamHandleMarshaler.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/ApiInterfaceMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/ApplicationInterfaceMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/BufferMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerExtensionMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerProfileMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelFlagMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelStateMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelTimetableMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecImplementationMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecInterfaceMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecTypeMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/CoreSessionMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/EventMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/FileHandleMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/FrameMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/IOEventHooksMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleInterfaceMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/StreamHandleMarshal.cs
freeswitch/branches/james/src/dotnet/Marshaling/Types/TypesMarshal.cs
freeswitch/branches/james/src/dotnet/Module.cs
freeswitch/branches/james/src/dotnet/Modules/Api.cs
freeswitch/branches/james/src/dotnet/Modules/Application.cs
freeswitch/branches/james/src/dotnet/Switch/CallerProfile.cs
freeswitch/branches/james/src/dotnet/Switch/Channel.cs
freeswitch/branches/james/src/dotnet/Switch/Console.cs
freeswitch/branches/james/src/dotnet/Switch/CoreSession.cs
freeswitch/branches/james/src/dotnet/Switch/Ivr.cs
freeswitch/branches/james/src/dotnet/Switch/LoadableModule.cs
freeswitch/branches/james/src/dotnet/Switch/StreamHandle.cs
freeswitch/branches/james/src/dotnet/Types/ApplicationFunction.cs
freeswitch/branches/james/src/dotnet/Types/ApplicationInterface.cs
freeswitch/branches/james/src/dotnet/Types/Buffer.cs
freeswitch/branches/james/src/dotnet/Types/CallCause.cs
freeswitch/branches/james/src/dotnet/Types/CallerExtension.cs
freeswitch/branches/james/src/dotnet/Types/CallerProfile.cs
freeswitch/branches/james/src/dotnet/Types/Channel.cs
freeswitch/branches/james/src/dotnet/Types/ChannelFlag.cs
freeswitch/branches/james/src/dotnet/Types/ChannelState.cs
freeswitch/branches/james/src/dotnet/Types/ChannelTimetable.cs
freeswitch/branches/james/src/dotnet/Types/CoreSession.cs
freeswitch/branches/james/src/dotnet/Types/DtmfCallbackFunction.cs
freeswitch/branches/james/src/dotnet/Types/Event.cs
freeswitch/branches/james/src/dotnet/Types/FileHandle.cs
freeswitch/branches/james/src/dotnet/Types/InputCallbackFunction.cs
freeswitch/branches/james/src/dotnet/Types/InputType.cs
freeswitch/branches/james/src/dotnet/Types/LoadableModule.cs
freeswitch/branches/james/src/dotnet/Types/LoadableModuleInterface.cs
freeswitch/branches/james/src/dotnet/Types/MemoryPool.cs
freeswitch/branches/james/src/dotnet/Types/Module.cs
freeswitch/branches/james/src/dotnet/Types/ModuleInterfaces.cs
freeswitch/branches/james/src/dotnet/Types/Status.cs
freeswitch/branches/james/src/dotnet/Types/StreamHandle.cs
freeswitch/branches/james/src/dotnet/Types/TextChannel.cs
Log:
Changed the namespace.
Modified: freeswitch/branches/james/src/dotnet/Common.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Common.cs (original)
+++ freeswitch/branches/james/src/dotnet/Common.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Reflection;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
public class Common
{
Modified: freeswitch/branches/james/src/dotnet/FreeSwitch.NET.csproj
==============================================================================
--- freeswitch/branches/james/src/dotnet/FreeSwitch.NET.csproj (original)
+++ freeswitch/branches/james/src/dotnet/FreeSwitch.NET.csproj Wed Sep 13 11:21:53 2006
@@ -7,7 +7,7 @@
<ProjectGuid>{251CAABC-16C3-4593-A491-603B908094E0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Freeswitch</RootNamespace>
+ <RootNamespace>FreeSwitch.NET</RootNamespace>
<AssemblyName>Freeswitch</AssemblyName>
<StartupObject>
</StartupObject>
Modified: freeswitch/branches/james/src/dotnet/Marshaling/BufferMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/BufferMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/BufferMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling.Types;
-using Freeswitch.Types;
+using FreeSwitch.NET.Marshaling.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class BufferMarshaler : ICustomMarshaler
{
@@ -60,14 +60,14 @@
public IntPtr MarshalManagedToNative(object obj)
{
- Freeswitch.Types.Buffer buffer = (Freeswitch.Types.Buffer)obj;
+ FreeSwitch.NET.Types.Buffer buffer = (FreeSwitch.NET.Types.Buffer)obj;
return buffer.marshaledObject.Handle;
}
public object MarshalNativeToManaged(IntPtr bufferPtr)
{
- Freeswitch.Types.Buffer buffer = new Freeswitch.Types.Buffer();
+ FreeSwitch.NET.Types.Buffer buffer = new FreeSwitch.NET.Types.Buffer();
BufferMarshal bufferMarshal = new BufferMarshal();
Marshal.PtrToStructure(bufferPtr, bufferMarshal);
Modified: freeswitch/branches/james/src/dotnet/Marshaling/CallerExtensionMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/CallerExtensionMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/CallerExtensionMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class CallerExtensionMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/CallerProfileMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/CallerProfileMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/CallerProfileMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class CallerProfileMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/ChannelMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/ChannelMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/ChannelMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class ChannelMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/ChannelTimetableMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/ChannelTimetableMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/ChannelTimetableMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class ChannelTimetableMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/CoreSessionMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/CoreSessionMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/CoreSessionMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class CoreSessionMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/EventMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/EventMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/EventMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,11 +31,11 @@
*/
using System;
using System.Collections;
-using Freeswitch.Marshaling.Types;
-using Freeswitch.Types;
+using FreeSwitch.NET.Marshaling.Types;
+using FreeSwitch.NET.Types;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class EventMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/FileHandleMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/FileHandleMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/FileHandleMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class FileHandleMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/MemoryPoolMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/MemoryPoolMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/MemoryPoolMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class MemoryPoolMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/StreamHandleMarshaler.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/StreamHandleMarshaler.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/StreamHandleMarshaler.cs Wed Sep 13 11:21:53 2006
@@ -31,11 +31,11 @@
*/
using System;
using System.Collections;
-using Freeswitch.Marshaling.Types;
-using Freeswitch.Types;
+using FreeSwitch.NET.Marshaling.Types;
+using FreeSwitch.NET.Types;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling
+namespace FreeSwitch.NET.Marshaling
{
class StreamHandleMarshaler : ICustomMarshaler
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/ApiInterfaceMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/ApiInterfaceMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/ApiInterfaceMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class ApiInterfaceMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/ApplicationInterfaceMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/ApplicationInterfaceMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/ApplicationInterfaceMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class ApplicationInterfaceMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/BufferMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/BufferMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/BufferMarshal.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class BufferMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerExtensionMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerExtensionMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerExtensionMarshal.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class CallerExtensionMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerProfileMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerProfileMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/CallerProfileMarshal.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class CallerProfileMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelFlagMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelFlagMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelFlagMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
internal enum ChannelFlagMarshal
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class ChannelMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelStateMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelStateMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelStateMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
internal enum ChannelStateMarshal
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelTimetableMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelTimetableMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/ChannelTimetableMarshal.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class ChannelTimetableMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecImplementationMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecImplementationMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecImplementationMarshal.cs Wed Sep 13 11:21:53 2006
@@ -30,9 +30,9 @@
*
*/
using System;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
internal class CodecImplementationMarshal
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecInterfaceMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecInterfaceMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecInterfaceMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class CodecInterfaceMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecMarshal.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Text;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
internal class CodecMarshal
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecTypeMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecTypeMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/CodecTypeMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
internal enum CodecTypesMarshal
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/CoreSessionMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/CoreSessionMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/CoreSessionMarshal.cs Wed Sep 13 11:21:53 2006
@@ -33,7 +33,7 @@
using System.Text;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential, Pack=1)]
internal class CoreSessionMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/EventMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/EventMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/EventMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class EventMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/FileHandleMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/FileHandleMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/FileHandleMarshal.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class FileHandleMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/FrameMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/FrameMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/FrameMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class FrameMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/IOEventHooksMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/IOEventHooksMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/IOEventHooksMarshal.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class IOEventHooksMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleInterfaceMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleInterfaceMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleInterfaceMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class LoadableModuleInterfaceMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/LoadableModuleMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/StreamHandleMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/StreamHandleMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/StreamHandleMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
[StructLayout(LayoutKind.Sequential)]
internal class StreamHandleMarshal
Modified: freeswitch/branches/james/src/dotnet/Marshaling/Types/TypesMarshal.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Marshaling/Types/TypesMarshal.cs (original)
+++ freeswitch/branches/james/src/dotnet/Marshaling/Types/TypesMarshal.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Marshaling.Types
+namespace FreeSwitch.NET.Marshaling.Types
{
public delegate
Status DtmfCallbackFunctionMarshal(
Modified: freeswitch/branches/james/src/dotnet/Module.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Module.cs (original)
+++ freeswitch/branches/james/src/dotnet/Module.cs Wed Sep 13 11:21:53 2006
@@ -34,12 +34,12 @@
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
-using Freeswitch;
-using Freeswitch.Types;
-using Freeswitch.Modules;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Modules;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
/// <summary>
/// Base class for all Freeswitch.NET modules
Modified: freeswitch/branches/james/src/dotnet/Modules/Api.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Modules/Api.cs (original)
+++ freeswitch/branches/james/src/dotnet/Modules/Api.cs Wed Sep 13 11:21:53 2006
@@ -33,9 +33,9 @@
using System.Collections;
using System.Text;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
+using FreeSwitch.NET.Types;
-namespace Freeswitch.Modules
+namespace FreeSwitch.NET.Modules
{
public class Api
{
Modified: freeswitch/branches/james/src/dotnet/Modules/Application.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Modules/Application.cs (original)
+++ freeswitch/branches/james/src/dotnet/Modules/Application.cs Wed Sep 13 11:21:53 2006
@@ -33,11 +33,11 @@
using System.Collections;
using System.Text;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Marshaling;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Modules
+namespace FreeSwitch.NET.Modules
{
public class Application
{
Modified: freeswitch/branches/james/src/dotnet/Switch/CallerProfile.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Switch/CallerProfile.cs (original)
+++ freeswitch/branches/james/src/dotnet/Switch/CallerProfile.cs Wed Sep 13 11:21:53 2006
@@ -32,11 +32,11 @@
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
public partial class Switch
{
Modified: freeswitch/branches/james/src/dotnet/Switch/Channel.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Switch/Channel.cs (original)
+++ freeswitch/branches/james/src/dotnet/Switch/Channel.cs Wed Sep 13 11:21:53 2006
@@ -32,10 +32,10 @@
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
public partial class Switch
{
Modified: freeswitch/branches/james/src/dotnet/Switch/Console.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Switch/Console.cs (original)
+++ freeswitch/branches/james/src/dotnet/Switch/Console.cs Wed Sep 13 11:21:53 2006
@@ -34,7 +34,7 @@
using System.Diagnostics;
using System.Text;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
public partial class Switch
{
Modified: freeswitch/branches/james/src/dotnet/Switch/CoreSession.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Switch/CoreSession.cs (original)
+++ freeswitch/branches/james/src/dotnet/Switch/CoreSession.cs Wed Sep 13 11:21:53 2006
@@ -32,10 +32,10 @@
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
public partial class Switch
{
Modified: freeswitch/branches/james/src/dotnet/Switch/Ivr.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Switch/Ivr.cs (original)
+++ freeswitch/branches/james/src/dotnet/Switch/Ivr.cs Wed Sep 13 11:21:53 2006
@@ -32,11 +32,11 @@
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
public partial class Switch
{
Modified: freeswitch/branches/james/src/dotnet/Switch/LoadableModule.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Switch/LoadableModule.cs (original)
+++ freeswitch/branches/james/src/dotnet/Switch/LoadableModule.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
/*
* SWITCH_DECLARE(switch_status_t) switch_loadable_module_load_module(char *dir, char *fname)
Modified: freeswitch/branches/james/src/dotnet/Switch/StreamHandle.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Switch/StreamHandle.cs (original)
+++ freeswitch/branches/james/src/dotnet/Switch/StreamHandle.cs Wed Sep 13 11:21:53 2006
@@ -31,10 +31,10 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Types;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch
+namespace FreeSwitch.NET
{
/*
* SWITCH_DECLARE(switch_status_t) switch_loadable_module_load_module(char *dir, char *fname)
Modified: freeswitch/branches/james/src/dotnet/Types/ApplicationFunction.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/ApplicationFunction.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/ApplicationFunction.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
}
Modified: freeswitch/branches/james/src/dotnet/Types/ApplicationInterface.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/ApplicationInterface.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/ApplicationInterface.cs Wed Sep 13 11:21:53 2006
@@ -34,7 +34,7 @@
using System.Runtime.InteropServices;
using System.Text;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
/*
public class ApplicationInterface
Modified: freeswitch/branches/james/src/dotnet/Types/Buffer.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/Buffer.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/Buffer.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class Buffer
{
Modified: freeswitch/branches/james/src/dotnet/Types/CallCause.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/CallCause.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/CallCause.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public enum CallCause
{
Modified: freeswitch/branches/james/src/dotnet/Types/CallerExtension.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/CallerExtension.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/CallerExtension.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class CallerExtension
{
Modified: freeswitch/branches/james/src/dotnet/Types/CallerProfile.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/CallerProfile.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/CallerProfile.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class CallerProfile
{
Modified: freeswitch/branches/james/src/dotnet/Types/Channel.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/Channel.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/Channel.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
/*
* char *name;
Modified: freeswitch/branches/james/src/dotnet/Types/ChannelFlag.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/ChannelFlag.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/ChannelFlag.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public enum ChannelFlag
{
Modified: freeswitch/branches/james/src/dotnet/Types/ChannelState.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/ChannelState.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/ChannelState.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public enum ChannelState
{
Modified: freeswitch/branches/james/src/dotnet/Types/ChannelTimetable.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/ChannelTimetable.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/ChannelTimetable.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class ChannelTimetable
{
Modified: freeswitch/branches/james/src/dotnet/Types/CoreSession.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/CoreSession.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/CoreSession.cs Wed Sep 13 11:21:53 2006
@@ -33,9 +33,9 @@
using System.Collections;
using System.Runtime.InteropServices;
using System.Text;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
/*
* uint32_t id;
Modified: freeswitch/branches/james/src/dotnet/Types/DtmfCallbackFunction.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/DtmfCallbackFunction.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/DtmfCallbackFunction.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public delegate Status DtmfCallbackFunction(CoreSession session, string dtmf);
}
Modified: freeswitch/branches/james/src/dotnet/Types/Event.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/Event.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/Event.cs Wed Sep 13 11:21:53 2006
@@ -34,7 +34,7 @@
using System.Text;
using System.Runtime.InteropServices;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public enum Priority
{
Modified: freeswitch/branches/james/src/dotnet/Types/FileHandle.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/FileHandle.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/FileHandle.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class FileHandle
{
Modified: freeswitch/branches/james/src/dotnet/Types/InputCallbackFunction.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/InputCallbackFunction.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/InputCallbackFunction.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling;
+using FreeSwitch.NET.Marshaling;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public delegate Status InputCallbackFunction(
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(StreamHandleMarshaler))]
Modified: freeswitch/branches/james/src/dotnet/Types/InputType.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/InputType.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/InputType.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public enum InputType
{
Modified: freeswitch/branches/james/src/dotnet/Types/LoadableModule.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/LoadableModule.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/LoadableModule.cs Wed Sep 13 11:21:53 2006
@@ -32,7 +32,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class LoadableModule
{
Modified: freeswitch/branches/james/src/dotnet/Types/LoadableModuleInterface.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/LoadableModuleInterface.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/LoadableModuleInterface.cs Wed Sep 13 11:21:53 2006
@@ -33,9 +33,9 @@
using System.Collections;
using System.Runtime.InteropServices;
using System.Text;
-using Freeswitch.Marshaling;
+using FreeSwitch.NET.Marshaling;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public delegate Status WriteFunction(
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(StreamHandleMarshaler))]
Modified: freeswitch/branches/james/src/dotnet/Types/MemoryPool.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/MemoryPool.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/MemoryPool.cs Wed Sep 13 11:21:53 2006
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class MemoryPool
{
Modified: freeswitch/branches/james/src/dotnet/Types/Module.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/Module.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/Module.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling;
+using FreeSwitch.NET.Marshaling;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public delegate Status ModuleReload();
public delegate bool ModulePause();
Modified: freeswitch/branches/james/src/dotnet/Types/ModuleInterfaces.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/ModuleInterfaces.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/ModuleInterfaces.cs Wed Sep 13 11:21:53 2006
@@ -34,7 +34,7 @@
using System.Runtime.InteropServices;
using System.Text;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
/*
public class ApplicationInterface
Modified: freeswitch/branches/james/src/dotnet/Types/Status.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/Status.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/Status.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public enum Status
{
Modified: freeswitch/branches/james/src/dotnet/Types/StreamHandle.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/StreamHandle.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/StreamHandle.cs Wed Sep 13 11:21:53 2006
@@ -31,9 +31,9 @@
*/
using System;
using System.Runtime.InteropServices;
-using Freeswitch.Marshaling.Types;
+using FreeSwitch.NET.Marshaling.Types;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public class StreamHandle
{
Modified: freeswitch/branches/james/src/dotnet/Types/TextChannel.cs
==============================================================================
--- freeswitch/branches/james/src/dotnet/Types/TextChannel.cs (original)
+++ freeswitch/branches/james/src/dotnet/Types/TextChannel.cs Wed Sep 13 11:21:53 2006
@@ -31,7 +31,7 @@
*/
using System;
-namespace Freeswitch.Types
+namespace FreeSwitch.NET.Types
{
public enum TextChannel
{
More information about the Freeswitch-branches
mailing list