gzdoom/src/i_net.h
Christoph Oelckers 0a611e1992 - refactored the exit calls out of the networking code
These ones were particularly bad examples of misusing the exit handlers by temporarily installing one themselves and then calling exit to clean stuff up.

Now they just return an error code to D_DoomMain to perform a regular exit.
2019-10-07 00:55:14 +02:00

8 lines
122 B
C

#ifndef __I_NET_H__
#define __I_NET_H__
// Called by D_DoomMain.
int I_InitNetwork (void);
void I_NetCmd (void);
#endif