File size: 26,315 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.IO;
using System.Runtime.InteropServices;
using Microsoft.Win32.SafeHandles;
namespace System.Management.Automation.Internal
{
internal class CabinetExtractor : ICabinetExtractor
{
/// <summary>
/// GC handle which prevents garbage collector from collecting this delegate.
/// </summary>
private CabinetNativeApi.FdiAllocDelegate _allocDelegate;
private GCHandle _fdiAllocHandle;
private CabinetNativeApi.FdiFreeDelegate _freeDelegate;
private GCHandle _fdiFreeHandle;
private CabinetNativeApi.FdiOpenDelegate _openDelegate;
private GCHandle _fdiOpenHandle;
private CabinetNativeApi.FdiReadDelegate _readDelegate;
private GCHandle _fdiReadHandle;
private CabinetNativeApi.FdiWriteDelegate _writeDelegate;
private GCHandle _fdiWriteHandle;
private CabinetNativeApi.FdiCloseDelegate _closeDelegate;
private GCHandle _fdiCloseHandle;
private CabinetNativeApi.FdiSeekDelegate _seekDelegate;
private GCHandle _fdiSeekHandle;
private CabinetNativeApi.FdiNotifyDelegate _notifyDelegate;
private GCHandle _fdiNotifyHandle;
internal CabinetNativeApi.FdiContextHandle fdiContext; // HFDI
internal CabinetExtractor()
{
CabinetNativeApi.FdiERF err = new CabinetNativeApi.FdiERF();
populateDelegates();
// marshal the delegate to a unmanaged function pointer so that AppDomain reference is stored correctly.
fdiContext = CabinetNativeApi.FDICreate(
Marshal.GetFunctionPointerForDelegate(_allocDelegate),
Marshal.GetFunctionPointerForDelegate(_freeDelegate),
Marshal.GetFunctionPointerForDelegate(_openDelegate),
Marshal.GetFunctionPointerForDelegate(_readDelegate),
Marshal.GetFunctionPointerForDelegate(_writeDelegate),
Marshal.GetFunctionPointerForDelegate(_closeDelegate),
Marshal.GetFunctionPointerForDelegate(_seekDelegate),
CabinetNativeApi.FdiCreateCpuType.Cpu80386,
err);
}
#region IDisposable Methods
/// <summary>
/// Flag: Has Dispose already been called?
/// </summary>
private bool _disposed = false;
/// <summary>
/// Protected implementation of Dispose pattern.
/// </summary>
/// <param name="disposing"></param>
protected override void Dispose(bool disposing)
{
if (_disposed)
{
return;
}
// Free managed objects within 'if (disposing)' if needed
fdiContext?.Dispose();
// Free unmanaged objects here
this.CleanUpDelegates();
_disposed = true;
// Call base class implementation in case it has resources to release
base.Dispose(disposing);
}
/// <summary>
/// Finalizes an instance of the <see cref="CabinetExtractor"/> class.
/// </summary>
~CabinetExtractor()
{
Dispose(false);
}
#endregion
internal override bool Extract(string cabinetName, string srcPath, string destPath)
{
IntPtr nativeDestPath = Marshal.StringToHGlobalAnsi(destPath);
bool result = CabinetNativeApi.FDICopy(
fdiContext,
cabinetName,
srcPath,
0, // Not used
Marshal.GetFunctionPointerForDelegate(_notifyDelegate),
IntPtr.Zero,
nativeDestPath);
Marshal.FreeHGlobal(nativeDestPath);
return result;
}
/// <summary>
/// Creates delegates for the FDI* operation functions.
/// </summary>
private void populateDelegates()
{
// if a delegate is re-located by a garbage collection, it will not affect
// the underlaying managed callback, so Alloc is used to add a reference
// to the delegate, allowing relocation of the delegate, but preventing
// disposal. Using GCHandle without pinning reduces fragmentation potential
// of the managed heap.
_allocDelegate = new CabinetNativeApi.FdiAllocDelegate(CabinetNativeApi.FdiAlloc);
_fdiAllocHandle = GCHandle.Alloc(_allocDelegate);
_freeDelegate = new CabinetNativeApi.FdiFreeDelegate(CabinetNativeApi.FdiFree);
_fdiFreeHandle = GCHandle.Alloc(_freeDelegate);
_openDelegate = new CabinetNativeApi.FdiOpenDelegate(CabinetNativeApi.FdiOpen);
_fdiOpenHandle = GCHandle.Alloc(_openDelegate);
_readDelegate = new CabinetNativeApi.FdiReadDelegate(CabinetNativeApi.FdiRead);
_fdiReadHandle = GCHandle.Alloc(_readDelegate);
_writeDelegate = new CabinetNativeApi.FdiWriteDelegate(CabinetNativeApi.FdiWrite);
_fdiWriteHandle = GCHandle.Alloc(_writeDelegate);
_closeDelegate = new CabinetNativeApi.FdiCloseDelegate(CabinetNativeApi.FdiClose);
_fdiCloseHandle = GCHandle.Alloc(_closeDelegate);
_seekDelegate = new CabinetNativeApi.FdiSeekDelegate(CabinetNativeApi.FdiSeek);
_fdiSeekHandle = GCHandle.Alloc(_seekDelegate);
_notifyDelegate = new CabinetNativeApi.FdiNotifyDelegate(CabinetNativeApi.FdiNotify);
_fdiNotifyHandle = GCHandle.Alloc(_notifyDelegate);
}
/// <summary>
/// Frees all the delegate handles.
/// </summary>
private void CleanUpDelegates()
{
// Free GCHandles so that the memory they point to may be unpinned (garbage collected)
if (_fdiAllocHandle.IsAllocated)
{
_fdiAllocHandle.Free();
_fdiFreeHandle.Free();
_fdiOpenHandle.Free();
_fdiReadHandle.Free();
_fdiWriteHandle.Free();
_fdiCloseHandle.Free();
_fdiSeekHandle.Free();
_fdiNotifyHandle.Free();
}
}
}
// CabinetExtractor loader implementation
internal class CabinetExtractorLoader : ICabinetExtractorLoader
{
private static CabinetExtractor s_extractorInstance;
private static CabinetExtractorLoader s_instance;
private static double s_created = 0;
internal static CabinetExtractorLoader GetInstance()
{
if (System.Threading.Interlocked.CompareExchange(ref s_created, 1, 0) == 0)
{
s_instance = new CabinetExtractorLoader();
s_extractorInstance = new CabinetExtractor();
}
return s_instance;
}
internal override ICabinetExtractor GetCabinetExtractor()
{
return s_extractorInstance;
}
}
internal static class CabinetNativeApi
{
#region Delegates and function definitions
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate IntPtr FdiAllocDelegate(int size);
internal static IntPtr FdiAlloc(int size)
{
try
{
return Marshal.AllocHGlobal(size);
}
catch (OutOfMemoryException)
{
return IntPtr.Zero;
}
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate void FdiFreeDelegate(IntPtr memblock);
internal static void FdiFree(IntPtr memblock)
{
Marshal.FreeHGlobal(memblock);
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate IntPtr FdiOpenDelegate(
[MarshalAs(UnmanagedType.LPStr)] string filename,
int oflag,
int pmode);
internal static IntPtr FdiOpen(string filename, int oflag, int pmode)
{
FileMode mode = CabinetNativeApi.ConvertOpflagToFileMode(oflag);
FileAccess access = CabinetNativeApi.ConvertPermissionModeToFileAccess(pmode);
FileShare share = CabinetNativeApi.ConvertPermissionModeToFileShare(pmode);
// This method is used for opening the cab file as well as saving the extracted files.
// When we are opening the cab file we only need read permissions.
// We force read permissions so that non-elevated users can extract cab files.
if (mode == FileMode.Open || mode == FileMode.OpenOrCreate)
{
access = FileAccess.Read;
share = FileShare.Read;
}
try
{
FileStream stream = new FileStream(filename, mode, access, share);
if (stream == null)
{
return new IntPtr(-1);
}
return GCHandle.ToIntPtr(GCHandle.Alloc(stream));
}
catch (IOException)
{
return new IntPtr(-1);
}
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate int FdiReadDelegate(
IntPtr fp,
[In, Out]
[MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2, ArraySubType = UnmanagedType.U1)]
byte[] buffer,
int count);
internal static int FdiRead(IntPtr fp, byte[] buffer, int count)
{
GCHandle handle = GCHandle.FromIntPtr(fp);
FileStream stream = (FileStream)handle.Target;
int numCharactersRead = 0;
try
{
numCharactersRead = stream.Read(buffer, 0, count);
}
catch (ArgumentNullException) { numCharactersRead = -1; }
catch (ArgumentOutOfRangeException) { numCharactersRead = -1; }
catch (NotSupportedException) { numCharactersRead = -1; }
catch (IOException) { numCharactersRead = -1; }
catch (ArgumentException) { numCharactersRead = -1; }
catch (ObjectDisposedException) { numCharactersRead = -1; }
return numCharactersRead;
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate int FdiWriteDelegate(
IntPtr fp,
[In]
[MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2, ArraySubType = UnmanagedType.U1)]
byte[] buffer,
int count);
internal static int FdiWrite(IntPtr fp, byte[] buffer, int count)
{
GCHandle handle = GCHandle.FromIntPtr(fp);
FileStream stream = (FileStream)handle.Target;
int numCharactersWritten = 0;
try
{
stream.Write(buffer, 0, count);
numCharactersWritten = count; // Write doesn't return the number of bytes written. Per MSDN, if it succeeds, it will have written count bytes.
}
catch (ArgumentNullException) { numCharactersWritten = -1; }
catch (ArgumentOutOfRangeException) { numCharactersWritten = -1; }
catch (NotSupportedException) { numCharactersWritten = -1; }
catch (IOException) { numCharactersWritten = -1; }
catch (ArgumentException) { numCharactersWritten = -1; }
catch (ObjectDisposedException) { numCharactersWritten = -1; }
return numCharactersWritten;
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate int FdiCloseDelegate(IntPtr fp);
internal static int FdiClose(IntPtr fp)
{
GCHandle handle = GCHandle.FromIntPtr(fp);
FileStream stream = (FileStream)handle.Target;
if (stream == null)
{
return -1;
}
else
{
stream.Dispose();
return 0;
}
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate int FdiSeekDelegate(IntPtr fp, int offset, int origin);
internal static int FdiSeek(IntPtr fp, int offset, int origin)
{
GCHandle handle = GCHandle.FromIntPtr(fp);
FileStream stream = (FileStream)handle.Target;
SeekOrigin seekOrigin = CabinetNativeApi.ConvertOriginToSeekOrigin(origin);
long status = 0;
try
{
status = stream.Seek(offset, seekOrigin);
}
catch (NotSupportedException) { status = -1; }
catch (IOException) { status = -1; }
catch (ArgumentException) { status = -1; }
catch (ObjectDisposedException) { status = -1; }
return (int)status;
}
[UnmanagedFunctionPointer(CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
internal delegate IntPtr FdiNotifyDelegate(FdiNotificationType fdint, FdiNotification fdin);
// Handles FDI notification
internal static IntPtr FdiNotify(FdiNotificationType fdint, FdiNotification fdin)
{
switch (fdint)
{
case FdiNotificationType.FdintCOPY_FILE:
{
// TODO: Should I catch exceptions for the new functions?
// Copy target directory
string destPath = Marshal.PtrToStringAnsi(fdin.pv);
// Split the path to a filename and path
string fileName = Path.GetFileName(fdin.psz1);
string remainingPsz1Path = Path.GetDirectoryName(fdin.psz1);
destPath = Path.Combine(destPath, remainingPsz1Path);
Directory.CreateDirectory(destPath); // Creates all intermediate directories if necessary.
// Create the file
string absoluteFilePath = Path.Combine(destPath, fileName);
return CabinetNativeApi.FdiOpen(absoluteFilePath, (int)OpFlags.Create, (int)(PermissionMode.Read | PermissionMode.Write)); // TODO: OK to ignore _O_SEQUENTIAL, WrOnly, and _O_BINARY?
}
case FdiNotificationType.FdintCLOSE_FILE_INFO:
{
// Close the file
CabinetNativeApi.FdiClose(fdin.hf);
// Set the file attributes
string destPath = Marshal.PtrToStringAnsi(fdin.pv);
string absoluteFilePath = Path.Combine(destPath, fdin.psz1);
IntPtr hFile = PlatformInvokes.CreateFile(
absoluteFilePath,
PlatformInvokes.FileDesiredAccess.GenericRead | PlatformInvokes.FileDesiredAccess.GenericWrite,
PlatformInvokes.FileShareMode.Read,
IntPtr.Zero,
PlatformInvokes.FileCreationDisposition.OpenExisting,
PlatformInvokes.FileAttributes.Normal,
IntPtr.Zero);
if (hFile != IntPtr.Zero)
{
PlatformInvokes.FILETIME ftFile = new PlatformInvokes.FILETIME();
if (PlatformInvokes.DosDateTimeToFileTime(fdin.date, fdin.time, ftFile))
{
PlatformInvokes.FILETIME ftLocal = new PlatformInvokes.FILETIME();
if (PlatformInvokes.LocalFileTimeToFileTime(ftFile, ftLocal))
{
PlatformInvokes.SetFileTime(hFile, ftLocal, null, ftLocal);
}
}
PlatformInvokes.CloseHandle(hFile);
}
PlatformInvokes.SetFileAttributesW(
absoluteFilePath,
(PlatformInvokes.FileAttributes)fdin.attribs & (PlatformInvokes.FileAttributes.ReadOnly | PlatformInvokes.FileAttributes.Hidden | PlatformInvokes.FileAttributes.System | PlatformInvokes.FileAttributes.Archive));
// Call notification function
return new IntPtr(1);
}
}
return new IntPtr(0);
}
#endregion
#region Helper methods for non-trivial conversions
/// <summary>
/// Converts an unmanaged define into a known managed value.
/// </summary>
/// <param name="origin">Defined in stdio.h.</param>
/// <returns>The appropriate System.IO.SeekOrigin value.</returns>
internal static SeekOrigin ConvertOriginToSeekOrigin(int origin)
{
switch (origin)
{
case 0x0: // SEEK_SET
return SeekOrigin.Begin;
case 0x1: // SEEK_CUR
return SeekOrigin.Current;
case 0x2: // SEEK_END
return SeekOrigin.End;
default:
return SeekOrigin.Current;
}
}
/// <summary>
/// Converts an unmanaged define into a known managed type.
/// </summary>
/// <param name="oflag">Operation mode defined in fcntl.h.</param>
/// <returns>The appropriate System.IO.FileMode type.</returns>
internal static FileMode ConvertOpflagToFileMode(int oflag)
{
// Note: This is not done in a switch because the order of tests matters.
if ((oflag & (int)(OpFlags.Create | OpFlags.Excl)) == (int)(OpFlags.Create | OpFlags.Excl))
{
return FileMode.CreateNew;
}
else if ((oflag & (int)(OpFlags.Create | OpFlags.Truncate)) == (int)(OpFlags.Create | OpFlags.Truncate))
{
return FileMode.OpenOrCreate;
}
else if ((oflag & (int)OpFlags.Append) != 0)
{
return FileMode.Append;
}
else if ((oflag & (int)OpFlags.Create) != 0)
{
return FileMode.Create;
}
else if ((oflag & (int)OpFlags.RdWr) != 0)
{
return FileMode.Open;
}
else if ((oflag & (int)OpFlags.Truncate) != 0)
{
return FileMode.Truncate;
}
else
{
return FileMode.OpenOrCreate; // This seemed the safest way to handled unrecognized types
}
}
/// <summary>
/// Converts an unmanaged define into a known managed type.
/// </summary>
/// <param name="pmode">Permission mode defined in stat.h.</param>
/// <returns>The appropriate System.IO.FileAccess type.</returns>
internal static FileAccess ConvertPermissionModeToFileAccess(int pmode)
{
// Note: This is not done in a switch because the order of tests matters.
if ((pmode & (int)(PermissionMode.Read | PermissionMode.Write)) == (int)(PermissionMode.Read | PermissionMode.Write))
{
return FileAccess.ReadWrite;
}
else if ((pmode & (int)PermissionMode.Read) != 0)
{
return FileAccess.Read;
}
else if ((pmode & (int)PermissionMode.Write) != 0)
{
return FileAccess.Write;
}
else
{
return FileAccess.Read;
}
}
/// <summary>
/// Converts an unmanaged define into a known managed type.
/// </summary>
/// <param name="pmode">Permission mode defined in stat.h.</param>
/// <returns>The appropriate System.IO.FileShare type.</returns>
internal static FileShare ConvertPermissionModeToFileShare(int pmode)
{
// Note: This is not done in a switch because the order of tests matters.
if ((pmode & (int)(PermissionMode.Read | PermissionMode.Write)) == (int)(PermissionMode.Read | PermissionMode.Write))
{
return FileShare.ReadWrite;
}
else if ((pmode & (int)PermissionMode.Read) != 0)
{
return FileShare.Read;
}
else if ((pmode & (int)PermissionMode.Write) != 0)
{
return FileShare.Write;
}
else
{
return FileShare.Read;
}
}
#endregion
#region IO classes, structures, and enums
[Flags]
internal enum PermissionMode : int
{
None = 0x0000,
Write = 0x0080,
Read = 0x0100
}
[Flags]
internal enum OpFlags : int
{
RdOnly = 0x0000,
WrOnly = 0x0001,
RdWr = 0x0002,
Append = 0x0008,
Create = 0x0100,
Truncate = 0x0200,
Excl = 0x0400
}
internal enum FdiCreateCpuType : int
{
CpuUnknown = -1,
Cpu80286 = 0,
Cpu80386 = 1
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
internal class FdiNotification
{
internal int cb; // LONG
internal string psz1; // char FAR *
internal string psz2; // char FAR *
internal string psz3; // char FAR *
internal IntPtr pv; // void FAR * // In this case, it is the destination path
internal IntPtr hf; // INT_PTR
internal short date; // USHORT
internal short time; // USHORT
internal short attribs; // USHORT
internal short setID; // USHORT
internal short iCabinet; // USHORT
internal short iFolder; // USHORT
internal int fdie; // FDIERROR
}
internal enum FdiNotificationType : int
{
FdintCABINET_INFO = 0x0,
FdintPARTIAL_FILE = 0x1,
FdintCOPY_FILE = 0x2,
FdintCLOSE_FILE_INFO = 0x3,
FdintNEXT_CABINET = 0x4,
FdintENUMERATE = 0x5
}
[StructLayout(LayoutKind.Sequential)]
internal class FdiERF
{
internal int erfOper;
internal int erfType;
internal bool fError;
}
internal sealed class FdiContextHandle : SafeHandleZeroOrMinusOneIsInvalid
{
private FdiContextHandle()
: base(true)
{
}
protected override bool ReleaseHandle()
{
return CabinetNativeApi.FDIDestroy(this.handle);
}
}
#endregion
#region PInvoke Definitions
/// <summary>
/// Creates an FDI context.
/// </summary>
/// <param name="pfnalloc">_In_ PFNALLOC - Memory allocation delegate.</param>
/// <param name="pfnfree">_In_ PFNFREE - Memory free delegate.</param>
/// <param name="pfnopen">_In_ PFNOPEN - File open delegate.</param>
/// <param name="pfnread">_In_ PFNREAD - File read delegate.</param>
/// <param name="pfnwrite">_In_ PFNWRITE - File write delegate.</param>
/// <param name="pfnclose">_In_ PFNCLOSE - File close delegate.</param>
/// <param name="pfnseek">_In_ PFNSEEK - File seek delegate.</param>
/// <param name="cpuType">_In_ int - CPU type.</param>
/// <param name="erf">_Inout_ PERF - Error structure containing error information.</param>
/// <returns></returns>
[DllImport("cabinet.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
internal static extern FdiContextHandle FDICreate(
IntPtr pfnalloc,
IntPtr pfnfree,
IntPtr pfnopen,
IntPtr pfnread,
IntPtr pfnwrite,
IntPtr pfnclose,
IntPtr pfnseek,
CabinetNativeApi.FdiCreateCpuType cpuType,
FdiERF erf);
/// <summary>
/// Extracts files from cabinets.
/// </summary>
/// <param name="hfdi">_In_ HFDI - A valid FDI context handle returned by FDICreate.</param>
/// <param name="pszCabinet">_In_ LPSTR - The name of the cabinet file.</param>
/// <param name="pszCabPath">_In_ LPSTR - The path to the cabinet file excluding the file name.</param>
/// <param name="flags">_In_ int - Not defined.</param>
/// <param name="pfnfdin">_In_ PFNFDINOTIFY - Pointer to the notification callback delegate.</param>
/// <param name="pfnfdid">_In_ PFNFDIDECRYPT - Not used.</param>
/// <param name="pvUser">_In_opt_ void FAR * - Path string passed to the notification function.</param>
/// <returns></returns>
[DllImport("cabinet.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl, SetLastError = true, BestFitMapping = false)]
internal static extern bool FDICopy(
FdiContextHandle hfdi,
[MarshalAs(UnmanagedType.LPStr)] string pszCabinet,
[MarshalAs(UnmanagedType.LPStr)] string pszCabPath,
int flags,
IntPtr pfnfdin,
IntPtr pfnfdid,
IntPtr pvUser);
/// <summary>
/// Deletes an open FDI context.
/// </summary>
/// <param name="hfdi">_In_ HFDI - The FDI context handle to destroy.</param>
/// <returns></returns>
[DllImport("cabinet.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
internal static extern bool FDIDestroy(
IntPtr hfdi);
#endregion
}
}
|