Files
milsko/include/Mw/Icon.h
NishiOwO 4bd7537801 dummy filechooser
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@375 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-16 18:45:45 +00:00

75 lines
843 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 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 Up icon
*/
MWDECL char* MwIconUp[];
/*!
* %brief Warning icon
*/
MWDECL char* MwIconWarning[];
#ifdef __cplusplus
}
#endif
#endif