Hi
By default metro apps get:
WINAPI_FAMILY=WINAPI_FAMILY_APP (0x02).
My app uses static library compiled with:
WINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP(0x03)
which works ok. My question is - does this violate any metro app convention? Would I be able sign such application?
The reason i use WINAPI_FAMILY_DESKTOP_APP in static lib is to access some APIs that are disabled with WINAPI_FAMILY_APP.
Thanks
Vlad