Files
xfce-winxp-tc/shared/exec/public/errors.h
2025-06-06 21:51:05 +01:00

28 lines
401 B
C

/** @file */
#ifndef __EXEC_ERRORS_H__
#define __EXEC_ERRORS_H__
#include <glib.h>
#define WINTC_EXEC_ERROR wintc_exec_error_quark()
//
// PUBLIC ENUMS
//
/**
* Specifies errors relevant to the launch APIs.
*/
typedef enum
{
WINTC_EXEC_ERROR_FELLTHRU = 1 /** None of the fallbacks were available. */
} WinTCExecError;
//
// PUBLIC FUNCTIONS
//
GQuark wintc_exec_error_quark(void);
#endif