38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
|
// net_dlg.hxx -- data structures for initializing & managing network.
|
||
|
//
|
||
|
// Written by Oliver Delise, started May 1999.
|
||
|
//
|
||
|
// Copyleft (C) 1999 Oliver Delise - delise@rp-plus.de
|
||
|
//
|
||
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
//
|
||
|
|
||
|
//#ifdef FG_NETWORK_OLK
|
||
|
|
||
|
#include <plib/pu.h>
|
||
|
|
||
|
extern void NetIdDialog_Cancel(puObject *);
|
||
|
extern void NewCallSign(puObject *cb);
|
||
|
extern void NetIdDialog_OK (puObject *);
|
||
|
extern void NewNetIdInit(void);
|
||
|
|
||
|
extern void NetFGDDialog_Cancel(puObject *);
|
||
|
extern void NetFGDDialog_OK (puObject *);
|
||
|
extern void NetFGDDialog_SCAN (puObject *);
|
||
|
extern void net_fgd_scan(puObject *cb);
|
||
|
extern void NewNetFGDInit(void);
|
||
|
|
||
|
//#endif // FG_NETWORK_OLK
|