The splash screen uses the VERSION_MAJOR, VERSION_MINOR, and PATCHLEVEL macros, but there is no room in case one of these goes into two digits. That seems like a safe assumption to make. The Makefile have rip.uu/splash.uu added to them. However, this won't work if you don't have splash.uu. Instead, just copy rip.uu or another .uu and name it splash.uu. Make expects to have splash.uu present (at least Borland's make). It doesn't add splash.uu decoding to the IDE framework. It does a bit in winhack.rc and Makefile.bcc to bring winhack.rc up to sync with Borland's compiler. If you don't like the splash screen, then I'll have to redo that part of the patch apart from the others.
14 lines
302 B
C
14 lines
302 B
C
/* Copyright (C) 2002 by Alex Kompel */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef MSWINSplashWindow_h
|
|
#define MSWINSplashWindow_h
|
|
|
|
#include "winMS.h"
|
|
#include "config.h"
|
|
#include "global.h"
|
|
|
|
void mswin_display_splash_window (void);
|
|
|
|
#endif /* MSWINSplashWindow_h */
|