xref: /aosp_15_r20/external/capstone/bindings/powershell/Capstone/Capstone.psd1 (revision 9a0e4156d50a75a99ec4f1653a0e9602a5d45c18)
1*9a0e4156SSadaf Ebrahimi#
2*9a0e4156SSadaf Ebrahimi# Module manifest for module 'Capstone'
3*9a0e4156SSadaf Ebrahimi#
4*9a0e4156SSadaf Ebrahimi
5*9a0e4156SSadaf Ebrahimi@{
6*9a0e4156SSadaf Ebrahimi
7*9a0e4156SSadaf Ebrahimi# Script module or binary module file associated with this manifest.
8*9a0e4156SSadaf EbrahimiModuleToProcess = 'Capstone.psm1'
9*9a0e4156SSadaf Ebrahimi
10*9a0e4156SSadaf Ebrahimi# Version number of this module.
11*9a0e4156SSadaf EbrahimiModuleVersion = '0.0.0.2'
12*9a0e4156SSadaf Ebrahimi
13*9a0e4156SSadaf Ebrahimi# Supported PSEditions
14*9a0e4156SSadaf Ebrahimi# CompatiblePSEditions = @()
15*9a0e4156SSadaf Ebrahimi
16*9a0e4156SSadaf Ebrahimi# ID used to uniquely identify this module
17*9a0e4156SSadaf EbrahimiGUID = 'd34db33f-9958-436d-a2d8-a77844a2bda5'
18*9a0e4156SSadaf Ebrahimi
19*9a0e4156SSadaf Ebrahimi# Author of this module
20*9a0e4156SSadaf EbrahimiAuthor = 'Ruben Boonen, beatcracker'
21*9a0e4156SSadaf Ebrahimi
22*9a0e4156SSadaf Ebrahimi# Company or vendor of this module
23*9a0e4156SSadaf Ebrahimi# CompanyName = 'Unknown'
24*9a0e4156SSadaf Ebrahimi
25*9a0e4156SSadaf Ebrahimi# Copyright statement for this module
26*9a0e4156SSadaf EbrahimiCopyright = 'BSD 3-Clause'
27*9a0e4156SSadaf Ebrahimi
28*9a0e4156SSadaf Ebrahimi# Description of the functionality provided by this module
29*9a0e4156SSadaf EbrahimiDescription = 'Capstone Engine Binding Module'
30*9a0e4156SSadaf Ebrahimi
31*9a0e4156SSadaf Ebrahimi# Minimum version of the Windows PowerShell engine required by this module
32*9a0e4156SSadaf EbrahimiPowerShellVersion = '2.0'
33*9a0e4156SSadaf Ebrahimi
34*9a0e4156SSadaf Ebrahimi# Name of the Windows PowerShell host required by this module
35*9a0e4156SSadaf Ebrahimi# PowerShellHostName = ''
36*9a0e4156SSadaf Ebrahimi
37*9a0e4156SSadaf Ebrahimi# Minimum version of the Windows PowerShell host required by this module
38*9a0e4156SSadaf Ebrahimi# PowerShellHostVersion = ''
39*9a0e4156SSadaf Ebrahimi
40*9a0e4156SSadaf Ebrahimi# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
41*9a0e4156SSadaf Ebrahimi# DotNetFrameworkVersion = ''
42*9a0e4156SSadaf Ebrahimi
43*9a0e4156SSadaf Ebrahimi# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
44*9a0e4156SSadaf Ebrahimi# CLRVersion = ''
45*9a0e4156SSadaf Ebrahimi
46*9a0e4156SSadaf Ebrahimi# Processor architecture (None, X86, Amd64) required by this module
47*9a0e4156SSadaf Ebrahimi# ProcessorArchitecture = ''
48*9a0e4156SSadaf Ebrahimi
49*9a0e4156SSadaf Ebrahimi# Modules that must be imported into the global environment prior to importing this module
50*9a0e4156SSadaf Ebrahimi# RequiredModules = @()
51*9a0e4156SSadaf Ebrahimi
52*9a0e4156SSadaf Ebrahimi# Assemblies that must be loaded prior to importing this module
53*9a0e4156SSadaf Ebrahimi# RequiredAssemblies = @()
54*9a0e4156SSadaf Ebrahimi
55*9a0e4156SSadaf Ebrahimi# Script files (.ps1) that are run in the caller's environment prior to importing this module.
56*9a0e4156SSadaf Ebrahimi# ScriptsToProcess = @()
57*9a0e4156SSadaf Ebrahimi
58*9a0e4156SSadaf Ebrahimi# Type files (.ps1xml) to be loaded when importing this module
59*9a0e4156SSadaf Ebrahimi# TypesToProcess = @()
60*9a0e4156SSadaf Ebrahimi
61*9a0e4156SSadaf Ebrahimi# Format files (.ps1xml) to be loaded when importing this module
62*9a0e4156SSadaf EbrahimiFormatsToProcess = 'Capstone.Format.ps1xml'
63*9a0e4156SSadaf Ebrahimi
64*9a0e4156SSadaf Ebrahimi# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
65*9a0e4156SSadaf Ebrahimi# NestedModules = @()
66*9a0e4156SSadaf Ebrahimi
67*9a0e4156SSadaf Ebrahimi# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
68*9a0e4156SSadaf EbrahimiFunctionsToExport = 'Get-CapstoneVersion', 'Get-CapstoneDisassembly'
69*9a0e4156SSadaf Ebrahimi
70*9a0e4156SSadaf Ebrahimi# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
71*9a0e4156SSadaf EbrahimiCmdletsToExport = @()
72*9a0e4156SSadaf Ebrahimi
73*9a0e4156SSadaf Ebrahimi# Variables to export from this module
74*9a0e4156SSadaf EbrahimiVariablesToExport = @()
75*9a0e4156SSadaf Ebrahimi
76*9a0e4156SSadaf Ebrahimi# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
77*9a0e4156SSadaf EbrahimiAliasesToExport = @()
78*9a0e4156SSadaf Ebrahimi
79*9a0e4156SSadaf Ebrahimi# DSC resources to export from this module
80*9a0e4156SSadaf Ebrahimi# DscResourcesToExport = @()
81*9a0e4156SSadaf Ebrahimi
82*9a0e4156SSadaf Ebrahimi# List of all modules packaged with this module
83*9a0e4156SSadaf Ebrahimi# ModuleList = @()
84*9a0e4156SSadaf Ebrahimi
85*9a0e4156SSadaf Ebrahimi# List of all files packaged with this module
86*9a0e4156SSadaf Ebrahimi# FileList = @()
87*9a0e4156SSadaf Ebrahimi
88*9a0e4156SSadaf Ebrahimi# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
89*9a0e4156SSadaf EbrahimiPrivateData = @{
90*9a0e4156SSadaf Ebrahimi
91*9a0e4156SSadaf Ebrahimi    PSData = @{
92*9a0e4156SSadaf Ebrahimi
93*9a0e4156SSadaf Ebrahimi        # Tags applied to this module. These help with module discovery in online galleries.
94*9a0e4156SSadaf Ebrahimi        # Tags = @()
95*9a0e4156SSadaf Ebrahimi
96*9a0e4156SSadaf Ebrahimi        # A URL to the license for this module.
97*9a0e4156SSadaf Ebrahimi        # LicenseUri = ''
98*9a0e4156SSadaf Ebrahimi
99*9a0e4156SSadaf Ebrahimi        # A URL to the main website for this project.
100*9a0e4156SSadaf Ebrahimi        # ProjectUri = ''
101*9a0e4156SSadaf Ebrahimi
102*9a0e4156SSadaf Ebrahimi        # A URL to an icon representing this module.
103*9a0e4156SSadaf Ebrahimi        # IconUri = ''
104*9a0e4156SSadaf Ebrahimi
105*9a0e4156SSadaf Ebrahimi        # ReleaseNotes of this module
106*9a0e4156SSadaf Ebrahimi        # ReleaseNotes = ''
107*9a0e4156SSadaf Ebrahimi
108*9a0e4156SSadaf Ebrahimi    } # End of PSData hashtable
109*9a0e4156SSadaf Ebrahimi
110*9a0e4156SSadaf Ebrahimi} # End of PrivateData hashtable
111*9a0e4156SSadaf Ebrahimi
112*9a0e4156SSadaf Ebrahimi# HelpInfo URI of this module
113*9a0e4156SSadaf Ebrahimi# HelpInfoURI = ''
114*9a0e4156SSadaf Ebrahimi
115*9a0e4156SSadaf Ebrahimi# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
116*9a0e4156SSadaf Ebrahimi# DefaultCommandPrefix = ''
117*9a0e4156SSadaf Ebrahimi
118*9a0e4156SSadaf Ebrahimi}