1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Add the System 7 editbox CDEF, which I seem to have forgotten.

[originally from svn r3018]
This commit is contained in:
Ben Harris 2003-03-29 18:31:09 +00:00
parent 5107780c54
commit adb469b1c6
2 changed files with 8 additions and 3 deletions

View File

@ -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"
};

View File

@ -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)