[Inaview-develop] src/modules/word_processor.c
Brought to you by:
lhag
|
From: Dennis L. <kd...@lh...> - 2011-10-26 18:02:47
|
I patched the word_processor.c file a bit, should be already in trunk
and get prepared for -rc2
Dennis
/*
DOS In a View 3.6.0
Copyright (C) 2010, 2011 Kim Leyendecker (kd...@lh...)
Authors:
Kim Leyendecker kd...@lh...
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdio.h>
#include "/home/kdl/diav-3x/trunk/src/api/version.h"
int main(void)
{
puts("DIAVword");
puts(DWORD);
puts("Part of DOS In a View 3.6.0");
puts("==========================================================================");
puts("============ index.txt ============");
puts("|File| |Edit| |View| |Insert| |Format| |Utilities| |Macro|
|Window| |Help|");
puts("This file supplements the printed documentation for:");
puts("Microsoft Word, Version 5.5B");
puts("-------------CONTENTS-------------------");
puts("-Other Sources of Information");
puts("-Release Information for 5.5B");
puts("-Additional Setup Information");
puts("-Installing Word To Run Under Windows 3.0");
puts("-Using Word Under Windows 3.0 with a Hercules Adapter");
puts("-Installing Word To Run Under Windows 2.1");
puts("-New Mouse Driver");
puts("-Running Word on a Floppy Disk System");
puts("-Additional Style Sheet Information");
puts( "-Additional Macro Information");
puts("-Using Word with a Monochrome VGA Adapater");
puts("-Using an IBM 8514 Monitor Under OS/2");
puts("-Using an IBM PS/2 Model 70 Display under OS/2 1.21" );
puts("-Using Word with KEYB.COM");
puts("-Using Word with Presentation Manager");
puts("-Mouse Support and OS/2");
return 0;
}
|