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,46 @@
compile insert ps_NotifyIcon_Equates
/*
** Copyright (C) 2012-2023 Revelation Software Inc. All Rights Reserved **
Author : Wile C Coyote - Super Genius
Date : May 2023
Purpose : Constants for working with PS NOTIFYICON objects
Comments
========
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _PS_NOTIFYICON_EQUATES_
#define _PS_NOTIFYICON_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// NOTIFYICON's are basically derived STATIC controls so most STATIC
// constants apply here as well
$insert ps_Static_Equates
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// PS Style Equates
equ PSS_NTI_MANUALSTART$ to 0x00000001 ; // STARTUPMODE property
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// STARTUPMODE property
equ NTI_STARTMODE_AUTO$ to 0
equ NTI_STARTMODE_MANUAL$ to 1
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////