1
0
Fork 0
VideoPlayer/src/utils.hpp

19 lines
245 B
C++
Raw Normal View History

#ifndef UTILS_H
#define UTILS_H
#include <QWindow>
#include <stdbool.h>
namespace Utils {
void
SetDPMS(bool on);
void
AlwaysOnTop(WId wid, bool on);
void
updateAppImage();
QString
createTimestamp(int seconds);
void
ResetScreensaver();
}
#endif