Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
77251773
Commit
77251773
authored
Jan 31, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No longer used.
parent
f1028ea2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
56 deletions
+0
-56
wrc_rsc.h
include/wrc_rsc.h
+0
-56
No files found.
include/wrc_rsc.h
deleted
100644 → 0
View file @
f1028ea2
/*
* Wine Resource Compiler structure definitions
*
* Copyright 1998 Bertho A. Stultiens
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_WRC_RSC_H
#define __WINE_WRC_RSC_H
#include "windef.h"
/* For types in structure */
/*
* Note on the resource and type names:
*
* These are (if non-null) pointers to a pascal-style
* string. The first character (BYTE for 16 bit and WCHAR
* for 32 bit resources) contains the length and the
* rest is the string. They are _not_ '\0' terminated!
*/
typedef
struct
wrc_resource16
{
INT
resid
;
/* The resource id if resname == NULL */
LPSTR
resname
;
INT
restype
;
/* The resource type-id if typename == NULL */
LPSTR
restypename
;
LPBYTE
data
;
/* Actual resource data */
UINT
datasize
;
/* The size of the resource */
}
wrc_resource16_t
;
typedef
struct
wrc_resource32
{
INT
resid
;
/* The resource id if resname == NULL */
LPWSTR
resname
;
INT
restype
;
/* The resource type-id if typename == NULL */
LPWSTR
restypename
;
LPBYTE
data
;
/* Actual resource data */
UINT
datasize
;
/* The size of the resource */
}
wrc_resource32_t
;
#endif
/* __WINE_WRC_RSC_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment