/* $Id: ckmkr2.r,v 1.7 91/12/15 23:17:45 rick Exp $ * $Source: /uw/mackermit/RCS/ckmkr2.r,v $ *------------------------------------------------------------------ * $Log: ckmkr2.r,v $ # Revision 1.7 91/12/15 23:17:45 rick # ut9 # # Revision 1.6 91/10/13 13:43:34 rick # UT(7) # # Revision 1.5 91/10/01 12:16:52 rick # UT(5) # # Revision 1.4 91/09/25 12:17:22 rick # Command window in TE. Multiple vt100 windows for command window. # # Revision 1.3 91/09/12 21:50:48 rick # UT(3). Install on watsun # # Revision 1.2 1991/09/10 22:21:46 rick # Update to UTexas(2) # # Revision 1.1 1991/09/10 19:18:00 rick # Initial revision # *------------------------------------------------------------------ * $Endlog$ */ /* Copyright (C) 1985, 1992, Trustees of Columbia University in the City of New York. Permission is granted to any individual or institution to use this software as long as it is not sold for profit. This copyright notice must be retained. This software may not be included in commercial products without written permission of Columbia University. */ /* Create the version string for Kermit with the last compi- */ /* lation time. Compile this resource definition with Rez. */ /* Created: 10/12/87 Matthias Aebi */ /* Modifications: */ type 'KR09' { byte = lenlabel / 8 - 1; /* length of array */ array CompileTime { string; byte; /* month first digit */ byte; /* month second digit */ byte = '/'; byte; /* day first digit */ byte; /* day second digit */ byte = '/'; byte; /* year first digit */ byte; /* year second digit */ byte = ' '; byte; /* hour first digit */ byte; /* hour second digit */ byte = ':'; byte; /* minute first digit */ byte; /* minute second digit */ }; lenlabel:; }; resource 'KR09' (0) { { "Kermit Version 0.99(188) \321 ", ($$Month/10)+48, ($$Month%10)+48, ($$Day/10)+48, ($$Day%10)+48, ($$Year%100/10)+48, ($$Year%10)+48, ($$Hour/10)+48, ($$Hour%10)+48, ($$Minute/10)+48, ($$Minute%10)+48 } }; /* * Junk so Emacs will set local variables to be compatible with Mac/MPW. * Should be at end of file. * * Local Variables: * tab-width: 4 * End: */