mirror of
https://github.com/almounah/go-buena-clr
synced 2026-06-06 15:14:29 +00:00
19 lines
666 B
Go
19 lines
666 B
Go
package clr
|
|
|
|
type ICLRAssemblyIdentityManager struct {
|
|
VTable *ICLRAssemblyIdentityManagerVTable
|
|
}
|
|
|
|
type ICLRAssemblyIdentityManagerVTable struct {
|
|
QueryInterface uintptr // Correct Order
|
|
AddRef uintptr // Correct Order
|
|
Release uintptr // Correct Order
|
|
GetCLRAssemblyReferenceList uintptr
|
|
GetBindingIdentityFromFile uintptr // Correct Order
|
|
GetBindingIdentityFromStream uintptr // Correct Order
|
|
GetProbingAssembliesFromReference uintptr
|
|
GetReferencedAssembliesFromFile uintptr
|
|
GetReferencedAssembliesFromStream uintptr
|
|
IsStronglyNamed uintptr
|
|
}
|