I need to figure out how to write functions to control access to resources on Windows 8.1. On Windows 7 and earlier versions, it seems I can use Access Control List related functions provided in Win32 API to write things like that,
C++ - How to set file permissions (cross platform)
but wonder how to do the same thing on the latest Windows 8.1, since Win32 is replaced by WinRT.
I'm considering using C++, but any suggestion to accomplish this task is welcomed.