Group: File Management - Library: kernel32
BOOL WINAPI DeleteFileTransacted(
__in LPCTSTR lpFileName,
__in HANDLE hTransaction
); DECLARE INTEGER DeleteFileTransacted IN kernel32;
STRING lpFileName,;
INTEGER hTransaction lpFileName [in] The name of the file to be deleted.
hTransaction [in] A handle to the transaction. This handle is returned by the CreateTransaction function.
If the function succeeds, the return value is nonzero.
Minimal OS: Vista
See also: RemoveDirectoryTransacted, CreateTransaction, CommitTransaction, RollbackTransaction, DeleteFile.
Home