mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: GPL-2.0-or-later OR CPOL-1.02
|
|
*
|
|
* Parts of this file are based on:
|
|
* https://www.codeproject.com/articles/570751/devmsi-an-example-cplusplus-msi-wix-deferred-custo
|
|
*
|
|
* Licensed under the The Code Project Open License (CPOL):
|
|
* https://www.codeproject.com/info/cpol10.aspx
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Function prototype for LogResult()
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* Log a message.
|
|
*
|
|
* If the DLL is being used in a WiX MSI environment, LogResult() will
|
|
* route any log messages to the MSI log file via WcaLog() or WcaLogError().
|
|
*
|
|
* If the DLL is NOT being used in a WiX MSI environment, LogResult() will
|
|
* route any log messages to stdout or stderr.
|
|
*
|
|
* If the result is an error code, LogResult will attempt to gather a
|
|
* text version of the error code and place it in the log. For example,
|
|
* if the error code means ERROR_FILE_NOT_FOUND, it will look up the appropriate
|
|
* message ( via FormatMessage() ) and add "The system cannot find the file specified."
|
|
* to the log.
|
|
*
|
|
* @param hr The HRESULT to be interrogated for success or failure.
|
|
* @param fmt The string format for a user-specified error message.
|
|
*/
|
|
void LogResult(
|
|
__in HRESULT hr,
|
|
__in_z __format_string PCSTR fmt, ...
|
|
);
|