X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/7dcd1f879d7a6d11cc7c4f67ee75a745578a46ad..055817455466c8eb60392f30bb7c689763962e17:/mac/macresid.h diff --git a/mac/macresid.h b/mac/macresid.h index ebb9f0de..76e0e525 100644 --- a/mac/macresid.h +++ b/mac/macresid.h @@ -1,4 +1,4 @@ -/* $Id: macresid.h,v 1.9 2003/02/07 01:38:12 ben Exp $ */ +/* $Id: macresid.h,v 1.16 2003/04/18 13:09:08 ben Exp $ */ /* * macresid.h -- Mac resource IDs @@ -54,6 +54,21 @@ #define wSettings 132 #define wiSettingsOpen 1 #define wEventLog 133 +#define wQuestion 134 /* Controls */ #define cVScroll 128 + +/* ldes for list box controls */ +#define ldes_Default 128 + +/* xDEFs */ +#define CDEF_EditBox 129 +#define SYS7_EDITBOX_VARIANT 0 +#define SYS7_TEXT_VARIANT 1 +#define SYS7_EDITBOX_PROC ((CDEF_EditBox << 4) + SYS7_EDITBOX_VARIANT) +#define SYS7_TEXT_PROC ((CDEF_EditBox << 4) + SYS7_TEXT_VARIANT) +#define CDEF_Default 130 +#define SYS7_DEFAULT_PROC (CDEF_Default << 4) +#define CDEF_ListBox 131 +#define SYS7_LISTBOX_PROC (CDEF_ListBox << 4)