blob: f494a5b0f1617e65384c9b01284b74691b47fcdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SHARED_SPLASH_HH
#define SHARED_SPLASH_HH 1
#pragma once
namespace splash
{
void init_client(void);
void init_server(void);
const char* get(void);
} // namespace splash
#endif // SHARED_SPLASH_HH
|