/* Copyright (C) 1985, 1996, Trustees of Columbia University in the City of New York. The C-Kermit software may not be, in whole or in part, licensed or sold for profit as a software product itself, nor may it be included in or distributed with commercial products or otherwise distributed by commercial concerns to their clients or customers without written permission of the Office of Kermit Development and Distribution, Columbia University. This copyright notice must not be removed, altered, or obscured. */ /* 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.994(192) \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: */