Files
milsko/include/Mw/Icon.h
NishiOwO 39c09b1fb7 stuff
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@345 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-15 18:55:41 +00:00

50 lines
551 B
C

/* $Id$ */
/*!
* %file Mw/Icon.h
* %brief Icon
*/
#ifndef __MW_ICON_H__
#define __MW_ICON_H__
#include <Mw/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* %brief Error icon
*/
MWDECL char* MwIconError[];
/*!
* %brief Info icon
*/
MWDECL char* MwIconInfo[];
/*!
* %brief News icon
*/
MWDECL char* MwIconNews[];
/*!
* %brief Note icon
*/
MWDECL char* MwIconNote[];
/*!
* %brief Question icon
*/
MWDECL char* MwIconQuestion[];
/*!
* %brief Warning icon
*/
MWDECL char* MwIconWarning[];
#ifdef __cplusplus
}
#endif
#endif