compile insert ps_DirWatcher_Equates /* ** Copyright (C) 2012-2021 Revelation Software Inc. All Rights Reserved ** Author : Wile C Coyote - Super Genius Date : Nov 2021 Purpose : Constants for working with PS DIRWATCHER object structures Comments ======== Amended Date Reason ======= ==== ====== */ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #ifndef _PS_DIRWATCHER_EQUATES_ #define _PS_DIRWATCHER_EQUATES_ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // File notify flags for the WATCHDIR method $insert msWin_FileNotify_Equates // DirWatcher controls are basically derived STATIC controls so most STATIC // constants apply here as well $insert ps_Static_Equates /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // SYSREPOSWINS structure overrides equ POS_DRW_NOTIFYTHRESHOLD$ to POS_TEXT_1$ ; // NOTIFYTHRESHOLD property equ POS_DRW_NOTIFYTIMER$ to POS_TEXT_2$ ; // NOTIFYTIMER property // SYSREPOSWINEXES structure overrides equ PSPOS_DRW_NOTIFYTHRESHOLD$ to PSPOS_TEXT_1$ ; // NOTIFYTHRESHOLD property equ PSPOS_DRW_NOTIFYTIMER$ to PSPOS_TEXT_2$ ; // NOTIFYTIMER property /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// equ PS_DRW_DFLT_NOTIFYTHRESHOLD$ to 100; // items equ PS_DRW_DFLT_NOTIFYTIMER$ to 50; // ms /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #endif /////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////