Module: Puppet::Util::Windows::Process::API

Extended by:
FFI::Library
Defined in:
lib/puppet/util/windows/process.rb

Defined Under Namespace

Classes: LUID, LUID_And_Attributes, Token_Privileges

Constant Summary collapse

Token_Information =
enum(
  :token_user, 1,
  :token_groups,
  :token_privileges,
  :token_owner,
  :token_primary_group,
  :token_default_dacl,
  :token_source,
  :token_type,
  :token_impersonation_level,
  :token_statistics,
  :token_restricted_sids,
  :token_session_id,
  :token_groups_and_privileges,
  :token_session_reference,
  :token_sandbox_inert,
  :token_audit_policy,
  :token_origin,
  :token_elevation_type,
  :token_linked_token,
  :token_elevation,
  :token_has_restrictions,
  :token_access_information,
  :token_virtualization_allowed,
  :token_virtualization_enabled,
  :token_integrity_level,
  :token_ui_access,
  :token_mandatory_policy,
  :token_logon_sid,
  :max_token_info_class
)