58 lines
2.4 KiB
Plaintext
58 lines
2.4 KiB
Plaintext
compile insert msWin_ProgressBar_Equates
|
|
/*
|
|
** Copyright (C) 2012 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author Mr C
|
|
Date Feb 2013
|
|
Purpose Equates for Windows ProgressBar controls
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
*/
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MSWIN_PROGRESSBAR_EQUATES_
|
|
#define _MSWIN_PROGRESSBAR_EQUATES_
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$insert msWin_CommCtrl_Equates
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ PROGRESS_CLASS$ to "msctls_progress32"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// ProgressBar Styles //////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ PBS_SMOOTH$ to 0x01
|
|
equ PBS_VERTICAL$ to 0x04
|
|
equ PBS_MARQUEE$ to 0x08
|
|
equ PBS_SMOOTHREVERSE$ to 0x10
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// ProgressBar States //////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ PBST_NORMAL$ to 0x0001
|
|
equ PBST_ERROR$ to 0x0002
|
|
equ PBST_PAUSED$ to 0x0003
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// ProgressBar Misc ////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ PB_DFT_STEP$ to 10 ; * // as docced in SDK
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|