From: ben Date: Sat, 29 Mar 2003 18:31:09 +0000 (+0000) Subject: Add the System 7 editbox CDEF, which I seem to have forgotten. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/8c682f11b016cbb88dfc2fbddecb3189fce7757f?ds=sidebyside;hp=74aca06df856c5518daf31d2b7a00cc3d798fcaf Add the System 7 editbox CDEF, which I seem to have forgotten. git-svn-id: svn://svn.tartarus.org/sgt/putty@3018 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/mac/mac_res.r b/mac/mac_res.r index 7bdafe3c..1ced9b2c 100644 --- a/mac/mac_res.r +++ b/mac/mac_res.r @@ -1,4 +1,4 @@ -/* $Id: mac_res.r,v 1.35 2003/03/26 23:52:21 ben Exp $ */ +/* $Id: mac_res.r,v 1.36 2003/03/29 18:31:09 ben Exp $ */ /* * Copyright (c) 1999, 2002, 2003 Ben Harris * All rights reserved. @@ -1125,6 +1125,9 @@ resource 'TEXT' (wLicence, "licence", purgeable) { data 'CDEF' (CDEF_Text) { $"4EF9 00000000" }; +data 'CDEF' (CDEF_EditBox) { + $"4EF9 00000000" +}; data 'CDEF' (CDEF_Default) { $"4EF9 00000000" }; diff --git a/mac/macresid.h b/mac/macresid.h index f3c75481..0c696b05 100644 --- a/mac/macresid.h +++ b/mac/macresid.h @@ -1,4 +1,4 @@ -/* $Id: macresid.h,v 1.12 2003/03/19 00:40:15 ben Exp $ */ +/* $Id: macresid.h,v 1.13 2003/03/29 18:31:09 ben Exp $ */ /* * macresid.h -- Mac resource IDs @@ -62,5 +62,7 @@ /* xDEFs */ #define CDEF_Text 128 #define SYS7_TEXT_PROC (CDEF_Text << 4) -#define CDEF_Default 129 +#define CDEF_EditBox 129 +#define SYS7_EDITBOX_PROC (CDEF_EditBox << 4) +#define CDEF_Default 130 #define SYS7_DEFAULT_PROC (CDEF_Default << 4)