/* * GUI front-end misc header * * Copyright INOUE Seiichiro , licensed under the GPL. */ #ifndef __GDIFF_GUIMISC_H__ #define __GDIFF_GUIMISC_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /* * Constant number */ typedef enum { QD_YES = 0, QD_NO = 1, QD_CANCEL = 2 } QDialogReply; /* Global function declarations */ extern QDialogReply ask_yes_no(const char *msg); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __GDIFF_GUIMISC_H__ */