move files

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@589 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-04 02:34:16 +00:00
parent 639be7db09
commit 1e7b838d7b
5 changed files with 35 additions and 34 deletions

View File

@@ -0,0 +1,61 @@
/* $Id$ */
/*!
* @file Mw/Resource/Cursor.h
* @brief Cursor externs
*/
#ifndef __MW_RESOURCE_CURSOR_H__
#define __MW_RESOURCE_CURSOR_H__
#include <Mw/MachDep.h>
#include <Mw/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Default cursor
*/
MWDECL MwCursor MwCursorDefault;
/*!
* @brief Default cursor mask
*/
MWDECL MwCursor MwCursorDefaultMask;
/*!
* @brief Cross cursor
*/
MWDECL MwCursor MwCursorCross;
/*!
* @brief Cross cursor mask
*/
MWDECL MwCursor MwCursorCrossMask;
/*!
* @brief Text cursor
*/
MWDECL MwCursor MwCursorText;
/*!
* @brief Text cursor mask
*/
MWDECL MwCursor MwCursorTextMask;
/*!
* @brief Hidden cursor
*/
MWDECL MwCursor MwCursorHidden;
/*!
* @brief Hidden cursor mask
*/
MWDECL MwCursor MwCursorHiddenMask;
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -0,0 +1,95 @@
/* $Id$ */
/*!
* @file Mw/Resource/Icon.h
* @brief Icon
*/
#ifndef __MW_RESOURCE_ICON_H__
#define __MW_RESOURCE_ICON_H__
#include <Mw/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Back icon
*/
MWDECL unsigned int MwIconBack[];
/*!
* @brief Computer icon
*/
MWDECL unsigned int MwIconComputer[];
/*!
* @brief Directory icon
*/
MWDECL unsigned int MwIconDirectory[];
/*!
* @brief Down icon
*/
MWDECL unsigned int MwIconDown[];
/*!
* @brief Error icon
*/
MWDECL unsigned int MwIconError[];
/*!
* @brief File icon
*/
MWDECL unsigned int MwIconFile[];
/*!
* @brief Forward icon
*/
MWDECL unsigned int MwIconForward[];
/*!
* @brief Info icon
*/
MWDECL unsigned int MwIconInfo[];
/*!
* @brief Left icon
*/
MWDECL unsigned int MwIconLeft[];
/*!
* @brief News icon
*/
MWDECL unsigned int MwIconNews[];
/*!
* @brief Note icon
*/
MWDECL unsigned int MwIconNote[];
/*!
* @brief Right icon
*/
MWDECL unsigned int MwIconRight[];
/*!
* @brief Search icon
*/
MWDECL unsigned int MwIconSearch[];
/*!
* @brief Up icon
*/
MWDECL unsigned int MwIconUp[];
/*!
* @brief Warning icon
*/
MWDECL unsigned int MwIconWarning[];
#ifdef __cplusplus
}
#endif
#endif