12 lines
140 B
C++
12 lines
140 B
C++
|
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
#include <QWindow>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
void
|
||
|
SetDPMS(bool on);
|
||
|
void
|
||
|
AlwaysOnTop(WId wid, bool on);
|
||
|
|
||
|
#endif
|