@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm !!!!C# Signature: [DllImport("dmcl40.dll", EntryPoint="dmAPIGet", CharSet=CharSet.Ansi, ExactSpelling=true,CallingConvention=CallingConvention.Cdecl)] private extern static IntPtr dmAPIGet(string cmd); !!!!Sample Code: public string Get(string command, params object[] args) { string cmd = String.Format(null,command, args); IntPtr res = dmAPIGet(cmd); return System.Runtime.Interop.Marshal.PtrToStringAnsi( res ); } !!!!Alternative Managed API: Partially complete... http://workspaces.gotdotnet.com/dm
Edit dmcl40.dmAPIGet
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.