44 lines
958 B
C
44 lines
958 B
C
/* NetHack 3.6 nhlan.c $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */
|
|
/* Copyright (c) Michael Allison, 1997 */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
/*
|
|
* Currently shared by the following ports:
|
|
* WIN32
|
|
*
|
|
* The code in here is used to take advantage of added features
|
|
* that might be available in a Local Area Network environment.
|
|
*
|
|
* Network Username of player
|
|
*/
|
|
|
|
#include "hack.h"
|
|
#include <ctype.h>
|
|
|
|
#ifdef LAN_FEATURES
|
|
|
|
void
|
|
init_lan_features()
|
|
{
|
|
lan_username();
|
|
}
|
|
/*
|
|
* The get_lan_username() call is a required call, since some of
|
|
* the other LAN features depend on a unique username being available.
|
|
*
|
|
*/
|
|
|
|
char *
|
|
lan_username()
|
|
{
|
|
char *lu;
|
|
lu = get_username(&g.lusername_size);
|
|
if (lu) {
|
|
Strcpy(g.lusername, lu);
|
|
return g.lusername;
|
|
} else
|
|
return (char *) 0;
|
|
}
|
|
#endif /*LAN_FEATURES*/
|
|
/*nhlan.c*/
|