blob: 3f06175cdc85fb83fe806d172fb53ffbdc0d67a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CLIENT_BACKGROUND_HH
#define CLIENT_BACKGROUND_HH 1
#pragma once
namespace background
{
void init(void);
void deinit(void);
void layout(void);
} // namespace background
#endif // CLIENT_BACKGROUND_HH
|