//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= // Confidential Trade Secret. // Copyright 1987-2001 Data Access Corporation, Miami FL, USA // All Rights reserved // DataFlex is a registered trademark of Data Access Corporation. // // Module: // GetDoubleClickTime.Pkg // // Purpose: // Defines interface to WinAPI function GetDoubleClickTime // // Author: // Vincent Oorsprong // // Date: // 2001, June, 4th // //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= #IFNDEF GET_GetDoubleClickTime External_Function WinAPI_GetDoubleClickTime "GetDoubleClickTime" User32.Dll Returns Integer // 2003-07-29 ------------------------------------ Start Nils G. Svedmyr #IF PKG_Version<|CI9 Function GetDoubleClickTime For Desktop Returns UInteger #ELSE Function GetDoubleClickTime Desktop Returns UInteger #ENDIF // 2003-07-29 ------------------------------------ Stop Nils G. Svedmyr UInteger uiTime Move (WinAPI_GetDoubleClickTime ()) To uiTime Function_Return uiTime End_Function // GetDoubleClickTime #ENDIF