https://github.com/asklar/subsubrepro
https://github.com/asklar/subsubrepro
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/asklar/subsubrepro
- Owner: asklar
- Created: 2021-03-22T08:24:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-22T08:59:25.000Z (about 5 years ago)
- Last Synced: 2025-06-26T16:09:02.384Z (11 months ago)
- Language: C++
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
========================================================================
C++/WinRT Repro2 Project Overview
========================================================================
This project demonstrates how to get started authoring Windows Runtime
classes directly with standard C++, using the C++/WinRT SDK component
to generate implementation headers from interface (IDL) files. The
generated Windows Runtime component binary and WinMD files should then
be bundled with the Universal Windows Platform (UWP) app consuming them.
Steps:
1. Create an interface (IDL) file to define your Windows Runtime class,
its default interface, and any other interfaces it implements.
2. Build the project once to generate module.g.cpp, module.h.cpp, and
implementation templates under the "Generated Files" folder, as
well as skeleton class definitions under "Generated Files\sources".
3. Use the skeleton class definitions for reference to implement your
Windows Runtime classes.
========================================================================
Learn more about C++/WinRT here:
http://aka.ms/cppwinrt/
========================================================================