If an old port is resurrected to work with current version code, its files can be relocated to the appropriate sys or win folder as required. In the meantime, the burden of upkeep can be avoided for the stuff in the outdated folder for now.
23 lines
970 B
C
23 lines
970 B
C
/* NetHack 3.6 gnmesg.h $NHDT-Date: 1432512807 2015/05/25 00:13:27 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
|
|
/* Copyright (C) 1998 by Erik Andersen <andersee@debian.org> */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef GnomeHackMessageWindow_h
|
|
#define GnomeHackMessageWindow_h
|
|
|
|
#include <gnome.h>
|
|
#include "config.h"
|
|
|
|
GtkWidget *ghack_init_message_window(/* GnomeHackKeyBuffer g_keybuffer,
|
|
GnomeHackClickBuffer g_clickbuffer */);
|
|
void ghack_message_window_clear(GtkWidget *widget, gpointer data);
|
|
void ghack_message_window_destroy();
|
|
void ghack_message_window_display(GtkWidget *widget, boolean block,
|
|
gpointer data);
|
|
void ghack_message_window_put_string(GtkWidget *widget, int attr,
|
|
const char *text, gpointer data);
|
|
void ghack_message_window_use_RIP(int how);
|
|
void ghack_message_window_scroll(int dx, int dy);
|
|
|
|
#endif /* GnomeHackMessageWindow_h */
|