添加演示demo项目

This commit is contained in:
2023-10-30 16:44:02 +08:00
parent ac0eca92a9
commit 0b683b9a8e
4 changed files with 36 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
// WinDeviceDemo.cpp: 定义应用程序的入口点。
//
#include "WinDeviceDemo.h"
#include "Video/ScreenManager.h"
using namespace std;
int main()
{
cout << "Hello CMake." << endl;
ScreenManager screenManager;
screenManager.UpdateDisplayInfo();
return 0;
}

View File

@@ -0,0 +1,8 @@
// WinDeviceDemo.h: 标准系统包含文件的包含文件
// 或项目特定的包含文件。
#pragma once
#include <iostream>
// TODO: 在此处引用程序需要的其他标头。