Added service function. (A service function dumping information for debugging, Added service function for screen drawing ON / OFF control) Specifically, see README. Make the object's destructor called from bios_exit () Add appropriate Destroy function to each object. Delete objects properly We have checked the termination process as a whole, as done. Fix to accept interrupts even during key_wait (). (Previously, only key input was accepted) Some timer interrupts are improved. (UNIXTimer.c) Change the wonx_include directory to wonx. Changed to search the full path to perl automatically and insert it at the beginning of perl script. Makefile review, improvement. Changed ON / OFF of screen drawing to switch according to display level. (See README for details.) Also change to display level lowered by F9 and display level raised by F10. In accordance with that, we have reviewed a part of ON / OFF part of drawing and key input event processing. Fixed to display message when pressing key. Obj ObjListData_GetPrev (ObjListData data) Obj ObjListData_GetNext (ObjListData data) To ObjListData ObjListData_GetPrev (ObjListData data) ObjListData ObjListData_GetNext (ObjListData data) Fixed to. Added install, uninstall target to Makefile. Fixed challsrc.sh. Version 2.2 - from wonx-2.2.tar.gz
51 lines
3.8 KiB
Plaintext
51 lines
3.8 KiB
Plaintext
/*****************************************************************************/
|
||
/* WonX - WonderWitch on X. */
|
||
/* */
|
||
/* WonX Copyright (c) 2000-2002 Sakai Hiroaki. */
|
||
/* All Rights Reserved. */
|
||
/*===========================================================================*/
|
||
/* 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, 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; see the file COPYING. If not, write to */
|
||
/* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||
/*****************************************************************************/
|
||
|
||
/*****************************************************************************/
|
||
/* 本ソフトウエアの著作権は全て「坂井弘亮」が有します. */
|
||
/* 本ソフトウエアは,フリーソフトです. */
|
||
/* 本ソフトウエアのライセンスには,GNU General Public License を適用します. */
|
||
/* 本ソフトウエアは,GNU General Public License の下での */
|
||
/* コピー/修正/改良/再配布が可能です. */
|
||
/* GPL については,詳しくは,COPYING を参照してください. */
|
||
/*===========================================================================*/
|
||
/* 本ソフトウェアを使用することによって発生したあらゆる損害の責任は */
|
||
/* 使用者にあり,著作権者はその責任を一切負いません. */
|
||
/* 本ソフトウエアの改良やバージョンアップや移植などの義務は, */
|
||
/* 著作権者には一切ありません. */
|
||
/*===========================================================================*/
|
||
/* 日本語のドキュメントの文章の内容と,英語のドキュメントの文章の内容の間に */
|
||
/* 差異が生じた場合には,日本語のドキュメントの文章の内容が,正しい意志で */
|
||
/* あるものとします. */
|
||
/*===========================================================================*/
|
||
/* 坂井弘亮の連絡先のメールアドレスは, */
|
||
/* hsakai@m8.people.or.jp */
|
||
/* です.また,本ソフトウエアの最新版を, */
|
||
/* http://www.seki.ee.kagu.sut.ac.jp/~sakai/WonderWitch/index.html */
|
||
/* で配布しています. */
|
||
/* 以下はミラーサイトです. */
|
||
/* http://hp.vector.co.jp/authors/VA014157/index.html */
|
||
/* http://www.people.or.jp/~hsakai/index.html */
|
||
/* ミラーサイトは,坂井が気が向いたときにアップデートするので,常に最新, */
|
||
/* というわけではありません.あくまでバックアップ用です. */
|
||
/* ご意見,ご感想がありましたら,ぜひ連絡ください. */
|
||
/*****************************************************************************/
|