mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-09 04:21:33 +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 */
|