mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-12-02 00:43:29 +00:00
0a611e1992
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.
8 lines
122 B
C
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
|