added sysprog entities

This commit is contained in:
Infineon\StieberD
2024-03-25 15:17:34 -07:00
parent 600a8e1f61
commit 3a6a2b6b5b
1028 changed files with 171660 additions and 0 deletions

View File

@ -0,0 +1,36 @@
compile insert msWin_TaskBar_Equates
/*
** Copyright (C) 2012 Revelation Software Inc. All Rights Reserved **
Author Mr C
Date Feb 2013
Purpose Equates for Windows 7+ Taskbar methods
Comments
========
Amended Date Reason
======= ==== ======
*/
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_TASKBAR_EQUATES_
#define _MSWIN_TASKBAR_EQUATES_
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// Progress States
equ TBPF_NOPROGRESS$ to 0x00
equ TBPF_INDETERMINATE$ to 0x01
equ TBPF_NORMAL$ to 0x02
equ TBPF_ERROR$ to 0x04
equ TBPF_PAUSED$ to 0x08
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#endif
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////