// JMsgBox.h ansi_c
// JIDA sample application MessageBox
// Copyright 2001 JUMPtec AG
// {G)U(2} 2001.03.06

//***************************************************************************

#ifndef __JMSGBOX_H__
#define __JMSGBOX_H__

#ifndef WIN32

//***************************************************************************

#include "JWinDefs.h"

#ifdef __cplusplus
extern "C" {
#endif

//***************************************************************************

#define MB_YESNO 1
#define IDNO     0
#define IDYES    1

#define MB_OKCANCEL 2
#define IDOK     2
#define IDCANCEL    3

DWORD MessageBox(HANDLE handle, PTCHAR message, PTCHAR title, DWORD flag);

//***************************************************************************

#ifdef __cplusplus
}
#endif

#endif

#endif

//***************************************************************************
