⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wres.h

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻 H
字号:
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#ifndef WRES_INCLUDED
#define WRES_INCLUDED

#include "layer0.h"
#include "filefmt.h"

/***** Exported types *****/
typedef struct WResDirHead      *WResDir;
typedef struct WResDirWindow {
    struct WResResNode          *CurrRes;
    struct WResTypeNode         *CurrType;
    struct WResLangNode         *CurrLang;
} WResDirWindow;

/***** Private Types *****/

typedef struct WResLangNode {
    struct WResLangNode         *Next;
    struct WResLangNode         *Prev;
    void                        *data; /* pointer for use by resource editors */
    WResLangInfo                Info;
    void                        *fileInfo;
} WResLangNode;

typedef struct WResResNode {        /* linked list of WResResInfo's */
    struct WResResNode *    Next;
    struct WResResNode *    Prev;
    WResLangNode *          Head;   /* list of resources of this type */
    WResLangNode *          Tail;   /* and name */
    WResResInfo             Info;
} WResResNode;

typedef struct WResTypeNode {       /* linked list of WResTypeInfo's */
    struct WResTypeNode *   Next;
    struct WResTypeNode *   Prev;
    WResResNode *           Head;   /* list of resources of this type */
    WResResNode *           Tail;
    WResTypeInfo            Info;
} WResTypeNode;

typedef struct WResDirHead {        /* head of the directory */
    uint_16                 NumResources;
    uint_16                 NumTypes;
    WResTypeNode *          Head;
    WResTypeNode *          Tail;
    WResTargetOS            TargetOS;
} WResDirHead;

/* macros to test condition for a WRes directory */
#define WResDirInitError( s )           ((s) == NULL)
#define WResIsEmptyWindow( wind )       ( (wind).CurrType == NULL ||     \
                                        (wind).CurrRes == NULL \
                                        || (wind).CurrLang == NULL )
#define WResGetNumTypes( dir )          ((dir)->NumTypes)
#define WResGetNumResources( dir )      ((dir)->NumResources)
#define WResGetTargetOS( dir )          ((dir)->TargetOS)
#define WResSetTargetOS( dir, os )      (dir)->TargetOS = (os)
#define WResIsFirstResOfType( wind )    ((wind).CurrRes == \
                                        (wind).CurrType->Head &&\
                                        WResIsFirstLangOfRes( wind ) )
#define WResIsFirstLangOfRes( wind )    ((wind).CurrLang == \
                                        (wind).CurrRes->Head )

/* function prototypes for WRes directory manipulation */
WResDir         WResInitDir( void );
int             WResIsEmpty( WResDir );
void            WResFreeDir( WResDir );
int             WResWriteDir( WResFileID, WResDir );
int             WResReadDir( WResFileID, WResDir, int * );
int             WResReadDir2( WResFileID handle, WResDir currdir,
                              int *dup_discarded, void *fileinfo );
int             WResAddResource( const WResID * type, const WResID * name,
                        uint_16 memflags, off_t offset, uint_32 length,
                        WResDir, WResLangType *lang, int * duplicate );
int             WResAddResource2( const WResID *type, const WResID *name,
                        uint_16 memflags, off_t offset, uint_32 length,
                        WResDir currdir, WResLangType *lang,
                        WResDirWindow *duplicate, void *fileinfo );
WResDirWindow   WResFindResource( const WResID * type, const WResID * name,
                        WResDir, WResLangType *lang );
void            WResRemoveResource( WResDir currdir, const WResID *type,
                        const WResID *name, WResLangType *lang );
WResDirWindow   WResFirstResource( WResDir );
void            WResSetEmptyWindow( WResDirWindow *wind );
void            WResMakeWindow( WResDirWindow *wind, WResTypeNode *type,
                                WResResNode *res, WResLangNode *lang );
WResDirWindow   WResNextResource( WResDirWindow, WResDir );
int             WResIsLastResource( WResDirWindow, WResDir );
WResResInfo *   WResGetResInfo( WResDirWindow );
WResTypeInfo *  WResGetTypeInfo( WResDirWindow );
WResLangInfo *  WResGetLangInfo( WResDirWindow );
void *          WResGetFileInfo( WResDirWindow currwind );
void            WResDelResource( WResDir currdir, const WResID *type,
                                 const WResID *name );


/* hidden but exported routines */

WResTypeNode * __FindType( const WResID * __type, WResDir __currdir );
WResResNode * __FindRes( const WResID * __name, WResTypeNode * __currtype );
void __FreeTypeList( WResDirHead * __currdir );
void __FreeResList( WResTypeNode *currtype );
void __FreeLangList( WResResNode *curres );
WResLangNode *__FindLang( WResLangType *lang, WResResNode *curres );

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -