Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
18 lines
582 B
Plaintext
18 lines
582 B
Plaintext
void copyrite ()
|
|
/*
|
|
Insert a copyright notice at the beginning of the current line.
|
|
After the copyright notice is inserted the cursor is positioned
|
|
at the beginning of the line following "All rights reserved."
|
|
|
|
You can assign this macro to a key using:
|
|
(assign_to_key "<Ctrl-F1>" "copyrite" )
|
|
This should be placed in your initials macro along with a command to
|
|
load the copyrite macro. The command is :
|
|
(load_macro "copyrite" )
|
|
*/
|
|
{
|
|
beginning_of_line();
|
|
insert ( " Copyright 1990 SDC Partners II L.P.\n" );
|
|
insert ( " All rights reserved.\n" );
|
|
}
|