2002-12-12 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
* include/oleacc.h (SELFLAG_*): Change to enum.
This commit is contained in:
parent
bf0aa692c6
commit
4adcb8724d
|
@ -1,9 +1,13 @@
|
|||
2002-12-11 Danny Smith <dannysmith@users.sourveforge.net>
|
||||
2002-12-12 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
|
||||
|
||||
* include/oleacc.h (SELFLAG_*): Change to enum.
|
||||
|
||||
2002-12-11 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
|
||||
Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
|
||||
|
||||
2002-12-09 Danny Smith <dannysmith@users.sourveforge.net>
|
||||
2002-12-09 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* include/shellapi.h (ExtractIconEx[AW]): Correct return type
|
||||
to UINT.
|
||||
|
|
|
@ -23,13 +23,17 @@
|
|||
#define DISPID_ACC_HITTEST (-5017)
|
||||
#define DISPID_ACC_DODEFAULTACTION (-5018)
|
||||
|
||||
#define SELFLAG_NONE 0x00000000
|
||||
#define SELFLAG_TAKEFOCUS 0x00000001
|
||||
#define SELFLAG_TAKESELECTION 0x00000002
|
||||
#define SELFLAG_EXTENDSELECTION 0x00000004
|
||||
#define SELFLAG_ADDSELECTION 0x00000008
|
||||
#define SELFLAG_REMOVESELECTION 0x00000010
|
||||
#define SELFLAG_VALID 0x0000001F
|
||||
typedef enum tagSELFLAG
|
||||
{
|
||||
SELFLAG_NONE = 0,
|
||||
SELFLAG_TAKEFOCUS = 1,
|
||||
SELFLAG_TAKESELECTION = 2,
|
||||
SELFLAG_EXTENDSELECTION = 4,
|
||||
SELFLAG_ADDSELECTION = 8,
|
||||
SELFLAG_REMOVESELECTION = 16
|
||||
} SELFLAG;
|
||||
|
||||
#define SELFLAG_VALID 0x0000001F
|
||||
|
||||
/* DEFINE_GUID(LIBID_Accessibility, 0x1ea4dbf0, 0x3c3b,0x11cf, 0x81, 0x0c, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71); */
|
||||
/* DEFINE_GUID(IID_IAccessible, 0x618736e0, 0x3c3d,0x11cf, 0x81, 0x0c, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71); */
|
||||
|
|
Loading…
Reference in New Issue