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
e91d976e
Commit
e91d976e
authored
Sep 27, 1999
by
Ulrich Czekalla
Committed by
Alexandre Julliard
Sep 27, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix integer based resource id assumption.
Add support for string based type ids.
parent
a39ad1af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
23 deletions
+23
-23
libres.c
loader/libres.c
+23
-23
No files found.
loader/libres.c
View file @
e91d976e
...
...
@@ -37,56 +37,56 @@ void LIBRES_RegisterResources(const wrc_resource32_t * const * Res)
/**********************************************************************
* LIBRES_FindResource
*/
typedef
int
(
*
CmpFunc_t
)(
LPCWSTR
a
,
LPCWSTR
b
,
int
c
);
int
CompareOrdinal
(
LPCWSTR
ordinal
,
LPCWSTR
resstr
,
int
resid
)
{
return
!
resstr
&&
(
resid
==
LOWORD
(
ordinal
));
}
int
CompareName
(
LPCWSTR
name
,
LPCWSTR
resstr
,
int
resid
)
{
return
resstr
&&
!
CRTDLL__wcsnicmp
(
resstr
+
1
,
name
,
*
(
resstr
));
}
HRSRC
LIBRES_FindResource
(
HINSTANCE
hModule
,
LPCWSTR
name
,
LPCWSTR
type
)
{
int
nameid
=
0
,
typeid
;
LPCWSTR
nameid
=
name
,
typeid
=
type
;
ResListE
*
ResBlock
;
const
wrc_resource32_t
*
const
*
Res
;
CmpFunc_t
EqualNames
=
CompareOrdinal
;
CmpFunc_t
EqualTypes
=
CompareOrdinal
;
if
(
HIWORD
(
name
))
{
if
(
*
name
==
'#'
)
{
LPSTR
nameA
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
name
);
nameid
=
atoi
(
nameA
+
1
);
nameid
=
(
LPCWSTR
)
atoi
(
nameA
+
1
);
HeapFree
(
GetProcessHeap
(),
0
,
nameA
);
name
=
NULL
;
}
}
else
{
nameid
=
LOWORD
(
name
);
name
=
NULL
;
EqualNames
=
CompareName
;
}
if
(
HIWORD
(
type
))
{
if
(
*
type
==
'#'
)
{
LPSTR
typeA
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
type
);
typeid
=
atoi
(
typeA
+
1
);
typeid
=
(
LPCWSTR
)
atoi
(
typeA
+
1
);
HeapFree
(
GetProcessHeap
(),
0
,
typeA
);
}
else
{
TRACE
(
"(*,*,type=string): Returning 0
\n
"
);
return
0
;
}
EqualTypes
=
CompareName
;
}
else
typeid
=
LOWORD
(
type
);
/* FIXME: types can be strings */
for
(
ResBlock
=
ResourceList
;
ResBlock
;
ResBlock
=
ResBlock
->
next
)
for
(
Res
=
ResBlock
->
Resources
;
*
Res
;
Res
++
)
if
(
name
)
{
if
((
*
Res
)
->
restype
==
typeid
&&
!
CRTDLL__wcsnicmp
((
LPCWSTR
)((
*
Res
)
->
resname
+
1
),
name
,
*
((
*
Res
)
->
resname
)))
return
(
HRSRC
)
*
Res
;
}
else
if
((
*
Res
)
->
restype
==
typeid
&&
(
*
Res
)
->
resid
==
nameid
)
if
(
EqualNames
(
nameid
,
(
*
Res
)
->
resname
,
(
*
Res
)
->
resid
)
&&
EqualTypes
(
typeid
,
(
*
Res
)
->
restypename
,
(
*
Res
)
->
restype
))
return
(
HRSRC
)
*
Res
;
return
0
;
}
...
...
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