]> git.ipfire.org Git - thirdparty/freeswitch.git/commit
Creating FreeSwitch.NET project, this is by no means complete yet but too many people...
authorJames Green <james.green@stealthnet.net>
Wed, 13 Sep 2006 15:31:28 +0000 (15:31 +0000)
committerJames Green <james.green@stealthnet.net>
Wed, 13 Sep 2006 15:31:28 +0000 (15:31 +0000)
commitca773a60c604e86501f2e4bc2ceab6d4d0440926
tree921a3e317477081320acd0993fcf524249130cfd
parent231c1d09f00beba8ed136656933dfccfe3a1a0ee
Creating FreeSwitch.NET project, this is by no means complete yet but too many people are interested
to keep it under wraps much longer! Feel free to pay me to work on this if it's in your businesses
interests, I need a job ;) Documentation, more code and examples will be on its way soon.

Email the list if there's any questions, i'd love to help people get started helping development.

- james@nerdc0re.com

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2682 d0543943-73ff-0310-b7d9-9358b9ac24b2
72 files changed:
src/dotnet/dotnet/Common.cs [new file with mode: 0755]
src/dotnet/dotnet/FreeSwitch.NET.csproj [new file with mode: 0755]
src/dotnet/dotnet/Makefile [new file with mode: 0644]
src/dotnet/dotnet/Marshaling/BufferMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/CallerExtensionMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/CallerProfileMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/ChannelMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/ChannelTimetableMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/CoreSessionMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/EventMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/FileHandleMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/MemoryPoolMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/StreamHandleMarshaler.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/ApiInterfaceMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/ApplicationInterfaceMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/BufferMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/CallerExtensionMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/CallerProfileMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/ChannelFlagMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/ChannelMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/ChannelStateMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/ChannelTimetableMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/CodecImplementationMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/CodecInterfaceMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/CodecMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/CodecTypeMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/CoreSessionMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/EventMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/FileHandleMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/FrameMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/IOEventHooksMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/LoadableModuleInterfaceMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/LoadableModuleMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/StreamHandleMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Marshaling/Types/TypesMarshal.cs [new file with mode: 0755]
src/dotnet/dotnet/Module.cs [new file with mode: 0644]
src/dotnet/dotnet/Modules/Api.cs [new file with mode: 0755]
src/dotnet/dotnet/Modules/Application.cs [new file with mode: 0755]
src/dotnet/dotnet/Properties/AssemblyInfo.cs [new file with mode: 0644]
src/dotnet/dotnet/Switch/CallerProfile.cs [new file with mode: 0755]
src/dotnet/dotnet/Switch/Channel.cs [new file with mode: 0755]
src/dotnet/dotnet/Switch/Console.cs [new file with mode: 0644]
src/dotnet/dotnet/Switch/CoreSession.cs [new file with mode: 0755]
src/dotnet/dotnet/Switch/Ivr.cs [new file with mode: 0755]
src/dotnet/dotnet/Switch/LoadableModule.cs [new file with mode: 0755]
src/dotnet/dotnet/Switch/StreamHandle.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/ApiFunction.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/ApplicationFunction.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/ApplicationInterface.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/Buffer.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/CallCause.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/CallerExtension.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/CallerProfile.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/Channel.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/ChannelFlag.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/ChannelState.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/ChannelTimetable.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/CoreSession.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/DtmfCallbackFunction.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/Event.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/FileHandle.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/InputCallbackFunction.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/InputType.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/LoadableModule.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/LoadableModuleInterface.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/MemoryPool.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/Module.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/ModuleInterfaces.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/Status.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/StreamHandle.cs [new file with mode: 0755]
src/dotnet/dotnet/Types/TextChannel.cs [new file with mode: 0755]
src/dotnet/dotnet/public.snk [new file with mode: 0644]