123456789101112131415161718192021222324252627282930313233 |
- #ifndef BASE_PROCESS_PROCESS_INFO_H_
- #define BASE_PROCESS_PROCESS_INFO_H_
- #include "base/base_export.h"
- #include "build/build_config.h"
- namespace base {
- #if defined(OS_WIN)
- enum IntegrityLevel {
- INTEGRITY_UNKNOWN,
- UNTRUSTED_INTEGRITY,
- LOW_INTEGRITY,
- MEDIUM_INTEGRITY,
- HIGH_INTEGRITY,
- };
- BASE_EXPORT IntegrityLevel GetCurrentProcessIntegrityLevel();
- BASE_EXPORT bool IsCurrentProcessElevated();
- #endif
- }
- #endif
|