mirror of
https://github.com/kunkundi/crossdesk.git
synced 2026-03-24 00:57:33 +08:00
14 lines
277 B
C++
14 lines
277 B
C++
#include "screen_capturer_wgc.h"
|
|
#include "wgc_plugin_api.h"
|
|
|
|
extern "C" {
|
|
|
|
crossdesk::ScreenCapturer* CrossDeskCreateWgcCapturer() {
|
|
return new crossdesk::ScreenCapturerWgc();
|
|
}
|
|
|
|
void CrossDeskDestroyWgcCapturer(crossdesk::ScreenCapturer* capturer) {
|
|
delete capturer;
|
|
}
|
|
}
|