GitXplorerGitXplorer
d

UWPSupportedAPIs-Docs

public
8 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
aa8ced008b945765cd3a1032768eeacf9dad7938

Fix regex issue.

ddongle-the-gadget committed 4 months ago
Verified
547678459e202854c540ee93305b52e97ae53a64

(Hopefully?) Improved analyzer

ddongle-the-gadget committed 4 months ago
Verified
15ca552582cfa7d92585a3d2d878b46353ab6ec8

Ignore local debug launch settings for LuceneGen

ddongle-the-gadget committed 4 months ago
Verified
eec13e8a9e245cdbd0ac621e9a9e45146b069424

Fix LuceneGen run on Actions

ddongle-the-gadget committed 4 months ago
Verified
7a18a9c3f44a74c6bdd4b20f24bff605b172d21e

Fix missing files.

ddongle-the-gadget committed 4 months ago
Verified
190e88e3dc6244ebfb9f97691d350288d26c8149

Better searching

ddongle-the-gadget committed 4 months ago

README

The README file for this repository.

UWPSupportedAPIs-Docs

A list of Win32 APIs supported* by UWP.

[!NOTE] We define "supported" here as in, allowed for use by UWP apps submitted to the Microsoft Store. Some other APIs not listed in this repository can work within UWP apps, yet are not approved for use by the Microsoft Store.

Motivation

Unfortunately, there are many misconceptions around what APIs are allowed within the "UWP sandbox" (actually a misnomer, its correct name is AppContainer). This problem is exacerbated by the fact that Microsoft themselves perpetuates unclear information inside their official documentation. This lackluster approach to communication has led to many app developers using runFullTrust (which is the equivalent of escaping the AppContainer sandbox) when it isn't actually needed.

We hope that, with this project, we can shed light on how permissible AppContainer actually is, and what you can actually do with UWP.

Oh, and also to stop Ahmed Walid from complaining about how bad the official documentation is. 😉😂

Problems with existing approaches

Microsoft Learn (formerly Microsoft Docs)

As said, Microsoft Learn suffers from outdated or incorrect information when it comes to UWP compatibility. For instance, GetModuleHandleW is listed in Microsoft Learn as "desktop apps only", despite the fact that this API has been supported for UWP apps since the Windows SDK version 18362.

Windows App Certification Kit

The Windows App Certification Kit includes a list of supported APIs, which are actually correct (for the SDK version that they come with). We scrape its files to find out which Win32 APIs are supported.

However, there is a bug in the Windows App Certification Kit: It always downloads an outdated version of the list, no matter the SDK version, even though the server literally warns the kit that the list it downloads is outdated.