mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-10-27 04:35:34 +08:00
Add wgc demo
This commit is contained in:
17
application/remote_desk/main.cpp
Normal file
17
application/remote_desk/main.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
#define AMRECORDER_IMPORT
|
||||
#include <iostream>
|
||||
|
||||
#include "export.h"
|
||||
#include "head.h"
|
||||
|
||||
int main() {
|
||||
bool is_supported = wgc_is_supported();
|
||||
if (!wgc_is_supported) {
|
||||
std::cout << "Not support wgc" << std::endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
rd rd;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user