mirror of
https://github.com/izzy2lost/RetroArch.git
synced 2026-03-26 16:42:27 -07: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 */
|