mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-01-26 11:39:44 +00:00
28 lines
401 B
C
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
|