XAmpleManagedWrapper.XAmpleDLLWrapper.Init C# (CSharp) Method

Init() public method

public Init ( ) : void
return void
		public void Init ()
		{
			// TODO: Currently we are using fixed DllImports.
			AssignDelegates ();

			if (m_setup != IntPtr.Zero)
				RemoveSetup ();

			m_setup = AmpleCreateSetup ();
			if (m_setup == IntPtr.Zero) {
				throw new ApplicationException ("Could not create and Setup Ample DLL");
			}
		}

Usage Example

コード例 #1
0
 public void Init()
 {
     m_xample = new XAmpleDLLWrapper();
     m_xample.Init();
 }
All Usage Examples Of XAmpleManagedWrapper.XAmpleDLLWrapper::Init