KShare/screenshotutil.hpp

14 lines
217 B
C++
Raw Normal View History

2017-04-23 15:05:48 +02:00
#ifndef SCREENSHOTUTIL_HPP
#define SCREENSHOTUTIL_HPP
#include <QPixmap>
namespace screenshotutil
{
2017-04-23 17:07:44 +02:00
QPixmap *fullscreen();
QPixmap *window(long wid);
2017-04-23 15:05:48 +02:00
void toClipboard(QString value);
}
#endif // SCREENSHOTUTIL_HPP