blob: 9510d35826ac781dfe3e8c418a5b892177c72c9c (
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 */
|