mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
108 lines
4.1 KiB
C#
108 lines
4.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using PCSPRIFILE = System.IntPtr;
|
|
using PCOISTREAM = System.IntPtr;
|
|
|
|
namespace AppxPackage
|
|
{
|
|
public static class PriFileHelper
|
|
{
|
|
private const string DLL = "PriFormatCli.dll"; // 改成你的 DLL 名称
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern PCSPRIFILE CreatePriFileInstanceFromStream (PCOISTREAM pStream);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void DestroyPriFileInstance (PCSPRIFILE pFilePri);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern IntPtr GetPriStringResource (PCSPRIFILE pFilePri, [MarshalAs (UnmanagedType.LPWStr)] string lpswUri);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern IntPtr GetPriPathResource (PCSPRIFILE pFilePri, [MarshalAs (UnmanagedType.LPWStr)] string lpswFilePath);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern PCSPRIFILE CreatePriFileInstanceFromPath ([MarshalAs (UnmanagedType.LPWStr)] string lpswFilePath);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
[return: MarshalAs (UnmanagedType.LPWStr)]
|
|
public static extern string PriFileGetLastError ();
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void FindPriStringResource (PCSPRIFILE pFilePri, IntPtr hUriList);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void FindPriPathResource (PCSPRIFILE pFilePri, IntPtr hPathList);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void ClearPriCacheData ();
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern IntPtr GetPriResource (PCSPRIFILE pFilePri, [MarshalAs (UnmanagedType.LPWStr)] string lpswResId);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void FindPriResource (PCSPRIFILE pFilePri, IntPtr hUriList);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
[return: MarshalAs (UnmanagedType.Bool)]
|
|
public static extern bool IsMsResourcePrefix ([MarshalAs (UnmanagedType.LPWStr)] string pResName);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
[return: MarshalAs (UnmanagedType.Bool)]
|
|
public static extern bool IsMsResourceUriFull ([MarshalAs (UnmanagedType.LPWStr)] string pResUri);
|
|
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
[return: MarshalAs (UnmanagedType.Bool)]
|
|
public static extern bool IsMsResourceUri ([MarshalAs (UnmanagedType.LPWStr)] string pResUri);
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void PriFormatFreeString (IntPtr ptr);
|
|
public static string PtrToString (IntPtr ptr)
|
|
{
|
|
if (ptr == IntPtr.Zero) return null;
|
|
string s = Marshal.PtrToStringUni (ptr);
|
|
PriFormatFreeString (ptr); // 如果 DLL 返回的内存要求 free
|
|
return s;
|
|
}
|
|
[DllImport (DLL, CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void FreePriString (IntPtr p);
|
|
}
|
|
public static class LpcwstrListHelper
|
|
{
|
|
public static IntPtr Create (IEnumerable<string> strings)
|
|
{
|
|
if (strings == null) return IntPtr.Zero;
|
|
var list = new List<string> (strings);
|
|
int count = list.Count;
|
|
int size = sizeof (uint) + IntPtr.Size * count;
|
|
IntPtr pMem = Marshal.AllocHGlobal (size);
|
|
Marshal.WriteInt32 (pMem, count);
|
|
IntPtr pArray = pMem + sizeof (uint);
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
IntPtr pStr = Marshal.StringToHGlobalUni (list [i]);
|
|
Marshal.WriteIntPtr (pArray, i * IntPtr.Size, pStr);
|
|
}
|
|
return pMem;
|
|
}
|
|
public static void Destroy (IntPtr pList)
|
|
{
|
|
if (pList == IntPtr.Zero)
|
|
return;
|
|
|
|
int count = Marshal.ReadInt32 (pList);
|
|
IntPtr pArray = pList + sizeof (uint);
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
IntPtr pStr = Marshal.ReadIntPtr (pArray, i * IntPtr.Size);
|
|
if (pStr != IntPtr.Zero)
|
|
Marshal.FreeHGlobal (pStr);
|
|
}
|
|
Marshal.FreeHGlobal (pList);
|
|
}
|
|
}
|
|
}
|