Files
milsko/include/Mw/Icon.h
NishiOwO 75db522462 add icon to window
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@396 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-17 10:50:59 +00:00

86 lines
968 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 Back icon
*/
MWDECL char* MwIconBack[];
/*!
* %brief Computer icon
*/
MWDECL char* MwIconComputer[];
/*!
* %brief Directory icon
*/
MWDECL char* MwIconDirectory[];
/*!
* %brief Error icon
*/
MWDECL char* MwIconError[];
/*!
* %brief File icon
*/
MWDECL char* MwIconFile[];
/*!
* %brief Forward icon
*/
MWDECL char* MwIconForward[];
/*!
* %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 Search icon
*/
MWDECL char* MwIconSearch[];
/*!
* %brief Up icon
*/
MWDECL char* MwIconUp[];
/*!
* %brief Warning icon
*/
MWDECL char* MwIconWarning[];
#ifdef __cplusplus
}
#endif
#endif