![]() |
Volume Shadow Copy
I am trying out the Volume Shadow Copy example but getting the following error.
(Delphi Xe2 on Win 7) In procedure GetBackupComponentsAndInitialize... at line CreateVssBackupComponents(BackupComps); I get "..... raised too many consecutive exceptions: 'Access violation at 0x00000000: read of address 0x00000000' Process Stopped..." I have compiled the programs with following two changes. For Xe2 I have only changed
Delphi-Quellcode:
to
If (Not CopyFile(PAnsiChar(Path),PAnsiChar(DestPath),True)) Then
Delphi-Quellcode:
and
If (Not CopyFile(PWideChar(Path),PWideChar(DestPath),True)) Then
unmarked from VssApi
Delphi-Quellcode:
Regards
Function CreateVssBackupComponents(
Var ppBackup : IVssBackupComponents) : HRESULT; StdCall; External VSS_API_DLL name 'CreateVssBackupComponentsInternal'; { for Windows Server 2003 } Procedure VssFreeSnapshotProperties(pProp : PVSS_SNAPSHOT_PROP); StdCall; External VSS_API_DLL; Allan |
AW: Volume Shadow Copy
What type of path information does 'CopyFile' expect? You cannot just change the type of parameter and expect the function to behave correctly. Remember: All that 'CopyFile' gets are two pointers to some stuff. It expects this stuff to be an array of 8-bit characters (I supose) but you now pass a list of 16-bit characters.
|
AW: Volume Shadow Copy
Point noted. That is not my problem though as I was just mentioning changes from the original praxis code.
My error is at procedure GetBackupComponentsAndInitialize... at line CreateVssBackupComponents(BackupComps); I get "..... raised too many consecutive exceptions: 'Access violation at 0x00000000: read of address 0x00000000' Process Stopped..." |
Alle Zeitangaben in WEZ +1. Es ist jetzt 22:06 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz