open-insight/SYSPROG/STPROCINS/MSWIN_ANIMATE_EQUATES.txt
2024-03-25 15:17:34 -07:00

81 lines
3.9 KiB
Plaintext

compile insert msWin_Animate_Equates
/*
** Copyright (C) 2013 Revelation Software Inc. All Rights Reserved **
Author Mr C
Date February 2013
Purpose Equates for Win32 Animate controls
Amended Date Reason
======= ==== ======
*/
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_ANIMATE_INSERT_
#define _MSWIN_ANIMATE_INSERT_
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
$insert msWin_CommCtrl_Equates
////////////////////////////////////////////////////////////////////////////////
// Animate Class ///////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
equ ANIMATE_CLASS$ to "SysAnimate32"
////////////////////////////////////////////////////////////////////////////////
// Animate Messages ////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
equ ACM_OPENA$ to 0x0464 ; * // ( WM_USER + 100 )
equ ACM_PLAY$ to 0x0465 ; * // ( WM_USER + 101 )
equ ACM_STOP$ to 0x0466 ; * // ( WM_USER + 102 )
equ ACM_OPENW$ to 0x0467 ; * // ( WM_USER + 103 )
////////////////////////////////////////////////////////////////////////////////
// Animate Styles //////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
equ ACS_CENTER$ to 0x0001
equ ACS_TRANSPARENT$ to 0x0002
equ ACS_AUTOPLAY$ to 0x0004
equ ACS_TIMER$ to 0x0008
////////////////////////////////////////////////////////////////////////////////
// Animate Notifications ///////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
equ ACN_START$ to 1
equ ACN_STOP$ to 2
////////////////////////////////////////////////////////////////////////////////
// Animate Shell32 clips ///////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
* // These are resource IDs for the standard platform AVI clips - note these
* // were removed as of Windows Vista.
equ AC_SHELL32_FINDFOLDER$ to "shell32.dll#150"
equ AC_SHELL32_FINDFILE$ to "shell32.dll#151"
equ AC_SHELL32_FINDCOMPUTER$ to "shell32.dll#152"
equ AC_SHELL32_MOVEFILE$ to "shell32.dll#160"
equ AC_SHELL32_COPYFILE$ to "shell32.dll#161"
equ AC_SHELL32_RECYCLEFILE$ to "shell32.dll#162"
equ AC_SHELL32_EMPTYRECYCLE$ to "shell32.dll#163"
equ AC_SHELL32_DELETEFILE$ to "shell32.dll#164"
equ AC_SHELL32_CHECKPROPERTIES$ to "shell32.dll#165" ; * // XP+ only beyond this point!
equ AC_SHELL32_WEBSEARCH$ to "shell32.dll#166"
equ AC_SHELL32_MOVEFILE_ORIG$ to "shell32.dll#167"
equ AC_SHELL32_COPYFILE_ORIG$ to "shell32.dll#168"
equ AC_SHELL32_DELETEFILE_ORIG$ to "shell32.dll#169"
equ AC_SHELL32_WEBCOPY$ to "shell32.dll#170"
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#endif
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////