Sha256: d725c2cdfa4b8c7c2b100faf6599bcd618db1649d0f16227c3ed9e80b69fb71a
Contents?: true
Size: 671 Bytes
Versions: 16
Compression:
Stored size: 671 Bytes
Contents
/** * @file * Declares utility functions for querying process properties */ #pragma once namespace leatherman { namespace windows { namespace process { /** * Returns whether or not the OS has the ability to set elevated token information. * @return True on Windows Vista or later, otherwise false. */ bool supports_elevated_security(); /** * Returns whether or not the owner of the current process is running with elevated security privileges. * Only supported on Windows Vista or later. * @return True if elevated, otherwise false. */ bool has_elevated_security(); }}} // namespace leatherman::windows::process
Version data entries
16 entries across 16 versions & 2 rubygems