mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 09:32:52 +00:00
16 lines
228 B
C
16 lines
228 B
C
|
#ifndef __RARCH_HTTPSERVR_H
|
||
|
#define __RARCH_HTTPSERVR_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int httpserver_init(unsigned port);
|
||
|
void httpserver_destroy();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __RARCH_HTTPSERVR_H */
|