1
0
Fork 0
VideoPlayer/src/utils.hpp

17 lines
220 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);
}
#endif