mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
997e0d782f
- Added partial support for font resources (user supplied fontdir is required). - All resources with inline data (a la RCDATA) now support language, version and characteristics data. - Implemented resource name duplicate checks. It is now an error if two resources of the same type have the same name. - Bugfix: Language propagation was not correct when .res files were generated. - Bugfix: VERSIONINFO now handles memory options. - Bugfix: resource names and the resource type may be equal (e.g. MENU MENU {...}). This support was mistakingly deleted in the upgrade to the builtin preprocessor. The standalone LANGUAGE setting became context sensitive as a consequence of this. Now it *must* end with a newline *after* both expressions and no newlines are allowed within the line (the statement must fit on one line). This is no practical problem though.
19 lines
306 B
C
19 lines
306 B
C
/*
|
|
* Dump resource prototypes
|
|
*
|
|
* Copyright 1998 Bertho A. Stultiens (BS)
|
|
*
|
|
*/
|
|
|
|
#ifndef __WRC_DUMPRES_H
|
|
#define __WRC_DUMPRES_H
|
|
|
|
#ifndef __WRC_WRCTYPES_H
|
|
#include "wrctypes.h"
|
|
#endif
|
|
|
|
char *get_typename(resource_t* r);
|
|
void dump_resources(resource_t *top);
|
|
char *get_nameid_str(name_id_t *n);
|
|
|
|
#endif
|