/** @file */ #ifndef __EXEC_ERRORS_H__ #define __EXEC_ERRORS_H__ #include #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