HIDBootLoader.cpp
上传用户:sss2005
上传日期:2022-08-05
资源大小:532k
文件大小:0k
源码类别:

USB编程

开发平台:

C++ Builder

  1. // HIDBootLoader.cpp : main project file.
  2. #include "stdafx.h"
  3. #include "Form1.h"
  4. using namespace HIDBootLoader;
  5. [STAThreadAttribute]
  6. int main(array<System::String ^> ^args)
  7. {
  8. // Enabling Windows XP visual effects before any controls are created
  9. Application::EnableVisualStyles();
  10. Application::SetCompatibleTextRenderingDefault(false); 
  11. // Create the main window and run it
  12. Application::Run(gcnew Form1());
  13. return 0;
  14. }