MessageBox.h

// MessageBox.h
//
// Author David Barrett-Lennard
// (C)opyright Cedanet Pty Ltd 2004

#pragma once
#ifndef Ceda_cxUtils_MessageBox_H
#define Ceda_cxUtils_MessageBox_H

#include "cxUtils.h"
#include "xstring.h"

namespace ceda
{

#ifdef _WIN32
    cxUtils_API void ShowErrorMessageBox(const xstring& s);
    cxUtils_API void ShowMessageBox(const xstring& s);

    cxUtils_API void ShowErrorMessageBoxf(ConstStringZ format,...);
    cxUtils_API void ShowMessageBoxf(ConstStringZ format,...);
#endif

} // namespace ceda

#endif // include guard