KShare/screenshotutil.hpp

13 lines
217 B
C++
Raw Normal View History

2017-04-23 15:05:48 +02:00
#ifndef SCREENSHOTUTIL_HPP
#define SCREENSHOTUTIL_HPP
#include <QPixmap>
2017-05-06 13:21:12 +02:00
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