15 lines
144 B
C
15 lines
144 B
C
|
#ifndef SCREENSHOT_H
|
||
|
|
||
|
#define SCREENSHOT_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void take_screenshot();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|