55 lines
2.3 KiB
Plaintext
55 lines
2.3 KiB
Plaintext
compile insert ps_SysIcon_Equates
|
|
/*
|
|
** Copyright (C) 2014 Revelation Software Inc. All Rights Reserved **
|
|
|
|
This insert is proprietary and is not to be used by or disclosed
|
|
to others, nor is it to be copied without written permission from
|
|
Revelation Technologies, Inc.
|
|
|
|
Author : Wile C Coyote - Super Genius
|
|
Date : November 2014
|
|
Purpose : Constants for working with PS properties that support system
|
|
icons
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _PS_SYSICON_EQUATES_
|
|
#define _PS_SYSICON_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // ICON property and Image API FILENAME(S) property constants
|
|
|
|
equ PS_SYSICON_APPLICATION$ to "APPLICATION"
|
|
equ PS_SYSICON_ERROR$ to "ERROR"
|
|
equ PS_SYSICON_INFORMATION$ to "INFORMATION"
|
|
equ PS_SYSICON_QUESTION$ to "QUESTION"
|
|
equ PS_SYSICON_SHIELD$ to "SHIELD"
|
|
equ PS_SYSICON_WARNING$ to "WARNING"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // SysIcon Repository Keys
|
|
|
|
equ PS_REP_SYSICON_APPLICATION$ to @appID<1> : "*IMAGE*ICO*SYSICON_APPLICATION"
|
|
equ PS_REP_SYSICON_ERROR$ to @appID<1> : "*IMAGE*ICO*SYSICON_ERROR"
|
|
equ PS_REP_SYSICON_INFORMATION$ to @appID<1> : "*IMAGE*ICO*SYSICON_INFORMATION"
|
|
equ PS_REP_SYSICON_QUESTION$ to @appID<1> : "*IMAGE*ICO*SYSICON_QUESTION"
|
|
equ PS_REP_SYSICON_SHIELD$ to @appID<1> : "*IMAGE*ICO*SYSICON_SHIELD"
|
|
equ PS_REP_SYSICON_WARNING$ to @appID<1> : "*IMAGE*ICO*SYSICON_WARNING"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|