Сделан новый проект VisualPABCLinux И пришлось склонировать PluginsSupport, поскольку он вносит зависимость по редактору Компоненты WeifenLuo для Linux надо после перекомпиляции скопировать в Libraries - подшить их к основному проекту просто не получилось
271 lines
9.3 KiB
C#
271 lines
9.3 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.InteropServices.ComTypes;
|
|
using System.Text;
|
|
|
|
namespace MSjogren.GacTool.FusionNative
|
|
{
|
|
[ComImport(), Guid("E707DCDE-D1CD-11D2-BAB9-00C04F8ECEAE"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
internal interface IAssemblyCache
|
|
{
|
|
[PreserveSig()]
|
|
int UninstallAssembly(uint dwFlags,
|
|
[MarshalAs(UnmanagedType.LPWStr)] string pszAssemblyName,
|
|
IntPtr pvReserved,
|
|
out uint pulDisposition);
|
|
|
|
[PreserveSig()]
|
|
int QueryAssemblyInfo(uint dwFlags,
|
|
[MarshalAs(UnmanagedType.LPWStr)] string pszAssemblyName,
|
|
IntPtr pAsmInfo);
|
|
|
|
[PreserveSig()]
|
|
int CreateAssemblyCacheItem(uint dwFlags,
|
|
IntPtr pvReserved,
|
|
out IAssemblyCacheItem ppAsmItem,
|
|
[MarshalAs(UnmanagedType.LPWStr)] string pszAssemblyName);
|
|
|
|
[PreserveSig()]
|
|
int CreateAssemblyScavenger(out object ppAsmScavenger);
|
|
|
|
[PreserveSig()]
|
|
int InstallAssembly(uint dwFlags,
|
|
[MarshalAs(UnmanagedType.LPWStr)] string pszManifestFilePath,
|
|
IntPtr pvReserved);
|
|
}
|
|
|
|
[ComImport(), Guid("9E3AAEB4-D1CD-11D2-BAB9-00C04F8ECEAE"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
internal interface IAssemblyCacheItem
|
|
{
|
|
void CreateStream([MarshalAs(UnmanagedType.LPWStr)] string pszName,
|
|
uint dwFormat,
|
|
uint dwFlags,
|
|
uint dwMaxSize,
|
|
out IStream ppStream);
|
|
|
|
void IsNameEqual(IAssemblyName pName);
|
|
|
|
void Commit(uint dwFlags);
|
|
|
|
void MarkAssemblyVisible(uint dwFlags);
|
|
}
|
|
|
|
[ComImport(), Guid("CD193BC0-B4BC-11D2-9833-00C04FC31D2E"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
internal interface IAssemblyName
|
|
{
|
|
//
|
|
// Assembly name properties
|
|
// 0 = PublicKey, byte[]* ; ???
|
|
// 1 = PublicKeyToken, byte[8]*
|
|
// 3 = Assembly Name, LPWSTR
|
|
// 4 = Major Version, ushort*
|
|
// 5 = Minor Version, ushort*
|
|
// 6 = Build Number, ushort*
|
|
// 7 = Revison Number, ushort*
|
|
// 8 = Culture, LPWSTR
|
|
// 9 = Processor Type, ??? ; ???
|
|
// 10 = OS Type, ??? ; ???
|
|
// 13 = Codebase, LPWSTR
|
|
// 14 = Modified Date, FILETIME* ; Only for Downloaded assemblies ?
|
|
// 17 = Custom, LPWSTR ; ZAP string, only for NGEN assemblies
|
|
// 19 = MVID, byte[16]* ; MVID value from __AssemblyInfo__.ini - what's this?
|
|
//
|
|
[PreserveSig()]
|
|
int Set(uint PropertyId,
|
|
IntPtr pvProperty,
|
|
uint cbProperty);
|
|
|
|
[PreserveSig()]
|
|
int Get(uint PropertyId,
|
|
IntPtr pvProperty,
|
|
ref uint pcbProperty);
|
|
|
|
[PreserveSig()]
|
|
int Finalize();
|
|
|
|
[PreserveSig()]
|
|
int GetDisplayName([Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder szDisplayName,
|
|
ref uint pccDisplayName,
|
|
uint dwDisplayFlags);
|
|
|
|
[PreserveSig()]
|
|
int BindToObject(object refIID,
|
|
object pAsmBindSink,
|
|
IApplicationContext pApplicationContext,
|
|
[MarshalAs(UnmanagedType.LPWStr)] string szCodeBase,
|
|
long llFlags,
|
|
int pvReserved,
|
|
uint cbReserved,
|
|
out int ppv);
|
|
|
|
[PreserveSig()]
|
|
int GetName(ref uint lpcwBuffer,
|
|
[Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pwzName);
|
|
|
|
[PreserveSig()]
|
|
int GetVersion(out uint pdwVersionHi,
|
|
out uint pdwVersionLow);
|
|
|
|
[PreserveSig()]
|
|
int IsEqual(IAssemblyName pName,
|
|
uint dwCmpFlags);
|
|
|
|
[PreserveSig()]
|
|
int Clone(out IAssemblyName pName);
|
|
}
|
|
|
|
[ComImport(), Guid("7C23FF90-33AF-11D3-95DA-00A024A85B51"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
internal interface IApplicationContext
|
|
{
|
|
void SetContextNameObject(IAssemblyName pName);
|
|
|
|
void GetContextNameObject(out IAssemblyName ppName);
|
|
|
|
void Set([MarshalAs(UnmanagedType.LPWStr)] string szName,
|
|
int pvValue,
|
|
uint cbValue,
|
|
uint dwFlags);
|
|
|
|
void Get([MarshalAs(UnmanagedType.LPWStr)] string szName,
|
|
out int pvValue,
|
|
ref uint pcbValue,
|
|
uint dwFlags);
|
|
|
|
void GetDynamicDirectory(out int wzDynamicDir,
|
|
ref uint pdwSize);
|
|
}
|
|
|
|
[ComImport(), Guid("21B8916C-F28E-11D2-A473-00C04F8EF448"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
internal interface IAssemblyEnum
|
|
{
|
|
[PreserveSig()]
|
|
int GetNextAssembly(out IApplicationContext ppAppCtx,
|
|
out IAssemblyName ppName,
|
|
uint dwFlags);
|
|
|
|
[PreserveSig()]
|
|
int Reset();
|
|
|
|
[PreserveSig()]
|
|
int Clone(out IAssemblyEnum ppEnum);
|
|
}
|
|
|
|
|
|
[ComImport(), Guid("1D23DF4D-A1E2-4B8B-93D6-6EA3DC285A54"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
internal interface IHistoryReader
|
|
{
|
|
[PreserveSig()]
|
|
int GetFilePath([Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder wzFilePath,
|
|
ref uint pdwSize);
|
|
|
|
[PreserveSig()]
|
|
int GetApplicationName([Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder wzAppName,
|
|
ref uint pdwSize);
|
|
|
|
[PreserveSig()]
|
|
int GetEXEModulePath([Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder wzExePath,
|
|
ref uint pdwSize);
|
|
|
|
void GetNumActivations(out uint pdwNumActivations);
|
|
|
|
void GetActivationDate(uint dwIdx, // One-based!
|
|
out long /* FILETIME */ pftDate);
|
|
|
|
[PreserveSig()]
|
|
int GetRunTimeVersion(ref long /* FILETIME */ pftActivationDate,
|
|
[Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder wzRunTimeVersion,
|
|
ref uint pdwSize);
|
|
|
|
void GetNumAssemblies(ref long /* FILETIME */ pftActivationDate,
|
|
out uint pdwNumAsms);
|
|
|
|
void GetHistoryAssembly(ref long /* FILETIME */ pftActivationDate,
|
|
uint dwIdx, // One-based!
|
|
[MarshalAs(UnmanagedType.IUnknown)] out object ppHistAsm);
|
|
|
|
}
|
|
|
|
internal class Fusion
|
|
{
|
|
[DllImport("fusion.dll", CharSet=CharSet.Auto)]
|
|
internal static extern int CreateAssemblyCache(out IAssemblyCache ppAsmCache,
|
|
uint dwReserved);
|
|
|
|
|
|
//
|
|
// dwFlags: 1 = Enumerate native image (NGEN) assemblies
|
|
// 2 = Enumerate GAC assemblies
|
|
// 4 = Enumerate Downloaded assemblies ???
|
|
//
|
|
[DllImport("fusion.dll", CharSet=CharSet.Auto)]
|
|
internal static extern int CreateAssemblyEnum(out IAssemblyEnum ppEnum,
|
|
IApplicationContext pAppCtx,
|
|
IAssemblyName pName,
|
|
uint dwFlags,
|
|
int pvReserved);
|
|
|
|
[DllImport("fusion.dll", CharSet=CharSet.Auto)]
|
|
internal static extern int CreateAssemblyNameObject(out IAssemblyName ppName,
|
|
string szAssemblyName,
|
|
uint dwFlags,
|
|
int pvReserved);
|
|
|
|
[DllImport("fusion.dll", CharSet=CharSet.Auto)]
|
|
internal static extern int CreateHistoryReader(string wzFilePath,
|
|
out IHistoryReader ppHistReader);
|
|
|
|
// Retrieves the path of the ApplicationHistory folder, typically
|
|
// Documents and Settings\<user>\Local Settings\Application Data\ApplicationHistory
|
|
// containing .ini files that can be read with IHistoryReader.
|
|
// pwdSize appears to be the offset of the last backslash in the returned
|
|
// string after the call.
|
|
// Returns S_OK on success, error HRESULT on failure.
|
|
//
|
|
[DllImport("fusion.dll", CharSet=CharSet.Unicode)]
|
|
internal static extern int GetHistoryFileDirectory([MarshalAs(UnmanagedType.LPWStr)] StringBuilder wzDir,
|
|
ref uint pdwSize);
|
|
|
|
[DllImport("fusion.dll")]
|
|
internal static extern int NukeDownloadedCache();
|
|
|
|
// ?????
|
|
[DllImport("fusion.dll")]
|
|
internal static extern int CreateApplicationContext(out IApplicationContext ppAppContext,
|
|
uint dw);
|
|
|
|
[DllImport("fusion.dll")]
|
|
internal static extern int GetCachePath(uint flags,
|
|
[MarshalAs(UnmanagedType.LPWStr)] StringBuilder wzDir,
|
|
ref uint pdwSize);
|
|
|
|
public static string GetGacPath()
|
|
{
|
|
const int size = 260;
|
|
StringBuilder b = new StringBuilder(size);
|
|
uint tmp = size;
|
|
GetCachePath(8, b, ref tmp); // flag 8 = GAC_ROOT_PATH
|
|
return b.ToString();
|
|
}
|
|
|
|
// _InstallCustomAssembly@16
|
|
// _InstallCustomModule@8
|
|
// _LookupHistoryAssembly@28
|
|
// _PreBindAssembly@20
|
|
// _CreateInstallReferenceEnum@16
|
|
|
|
|
|
//
|
|
// Brings up the .NET Applicaion Restore wizard
|
|
// Returns S_OK, 0x80131075 (App not run) or 0x80131087 (Fix failed)
|
|
//
|
|
[DllImport("shfusion.dll", CharSet=CharSet.Unicode)]
|
|
internal static extern uint PolicyManager(IntPtr hWndParent,
|
|
string pwzFullyQualifiedAppPath,
|
|
string pwzAppName,
|
|
int dwFlags);
|
|
|
|
}
|
|
}
|
|
|
|
|