13 lines
217 B
C++
13 lines
217 B
C++
#ifndef SUNSHINE_PUBLISH_H
|
|
#define SUNSHINE_PUBLISH_H
|
|
|
|
#include "thread_safe.h"
|
|
|
|
#define SERVICE_NAME "Sunshine"
|
|
#define SERVICE_TYPE "_nvstream._tcp"
|
|
|
|
namespace publish {
|
|
void start();
|
|
}
|
|
|
|
#endif //SUNSHINE_PUBLISH_H
|