home *** CD-ROM | disk | FTP | other *** search
- //
- // The Fusion Library Interface for DOS
- // Version 1.06c
- // Copyright (C) 1990, 1991, 1992
- // Software Dimensions
- //
- // DialogClass
- //
-
- #include "fli.h"
-
- #ifdef __BCPLUSPLUS__
- #pragma hdrstop
- #endif
-
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- //
- // HotKey()
- //
- // Locate the help identifier
- //
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-
- void DialogClass::HotKey(int _LocX,int _LocY,char *_LocatorText,
- int _QuickKey)
- {
- if (Current)
- {
- Current->LocX=_LocX;
- Current->LocY=_LocY;
- Current->LocatorText=_LocatorText;
- Current->QuickKey=_QuickKey;
- }
- }
-
-