@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: TODO - a short description !!!!C# Signature: [DllImport("dtl.dll", SetLastError=true)] static extern public int DTL_VERSION(StringBuilder sb, int maxChars); !!!!VB Signature: Declare Function DTL_VERSION Lib "dtl.dll" (TODO) As TODO !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: Dtl.dll functions are not thread safe. Multiple instances need to be in separate processes. !!!!Tips & Tricks: Please add some! !!!!Sample Code: /// <summary> /// Get version of dtl dll /// </summary> /// <param name="versionText">string to hold returned text</param> /// <param name="maxCharsToReturn">size of string to hold version text</param> /// <returns>dtl status</returns> public static int DtlVersion(StringBuilder versionText, int maxCharsToReturn) { new UIPermission(UIPermissionWindow.AllWindows).Demand(); return (UnsafeNativeMethods.DTL_VERSION(versionText, maxCharsToReturn)); } Documentation: DTL_VERSION@msdn on MSDN
Edit dtl.DTL_VERSION
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.