daemon.c: added prototypes for non-static functions

This commit is contained in:
Evgeny Grin (Karlson2k)
2022-04-23 15:21:18 +03:00
parent 48d7bc547d
commit a263d605ff
+13 -6
View File
@@ -88,6 +88,19 @@
/* Forward declarations. */
/**
* Global initialisation function.
*/
void
MHD_init (void);
/**
* Global deinitialisation function.
*/
void
MHD_fini (void);
/**
* Close all connections for the daemon.
* Must only be called when MHD_Daemon::shutdown was set to true.
@@ -116,12 +129,6 @@ MHD_epoll (struct MHD_Daemon *daemon,
#endif /* EPOLL_SUPPORT */
/**
* Globally initialise library.
*/
void
MHD_init (void);
#if defined(MHD_WINSOCK_SOCKETS)
/**