Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
88fc9164
Commit
88fc9164
authored
Feb 24, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Use case-insensitive matching for typelib flags.
Spotted by Austin English.
parent
0fb77049
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
actctx.c
dlls/kernel32/tests/actctx.c
+1
-1
actctx.c
dlls/ntdll/actctx.c
+4
-4
typelib.c
dlls/oleaut32/tests/typelib.c
+1
-1
No files found.
dlls/kernel32/tests/actctx.c
View file @
88fc9164
...
...
@@ -186,7 +186,7 @@ static const char manifest_wndcls2[] =
" <windowClass versioned=
\"
no
\"
>wndClass3</windowClass>"
" <windowClass>wndClass4</windowClass>"
" <typelib tlbid=
\"
{99999999-8888-7777-6666-555555555555}
\"
version=
\"
1.0
\"
helpdir=
\"
help
\"
resourceid=
\"
409
\"
"
" flags=
\"
H
IDDEN,CONTROL,R
ESTRICTED
\"
/>"
" flags=
\"
H
iddeN,CoNTROL,r
ESTRICTED
\"
/>"
" <typelib tlbid=
\"
{99999999-8888-7777-6666-555555555556}
\"
version=
\"
1.0
\"
helpdir=
\"
help1
\"
resourceid=
\"
409
\"
/>"
" <typelib tlbid=
\"
{99999999-8888-7777-6666-555555555557}
\"
version=
\"
1.0
\"
helpdir=
\"\"
/>"
"</file>"
...
...
dlls/ntdll/actctx.c
View file @
88fc9164
...
...
@@ -1646,13 +1646,13 @@ static BOOL parse_typelib_flags(const xmlstr_t *value, struct entity *entity)
start
=
str
;
while
(
*
str
!=
','
&&
(
i
++
<
value
->
len
))
str
++
;
if
(
!
strncmpW
(
start
,
restrictedW
,
str
-
start
))
if
(
!
strncmp
i
W
(
start
,
restrictedW
,
str
-
start
))
*
flags
|=
LIBFLAG_FRESTRICTED
;
else
if
(
!
strncmpW
(
start
,
controlW
,
str
-
start
))
else
if
(
!
strncmp
i
W
(
start
,
controlW
,
str
-
start
))
*
flags
|=
LIBFLAG_FCONTROL
;
else
if
(
!
strncmpW
(
start
,
hiddenW
,
str
-
start
))
else
if
(
!
strncmp
i
W
(
start
,
hiddenW
,
str
-
start
))
*
flags
|=
LIBFLAG_FHIDDEN
;
else
if
(
!
strncmpW
(
start
,
hasdiskimageW
,
str
-
start
))
else
if
(
!
strncmp
i
W
(
start
,
hasdiskimageW
,
str
-
start
))
*
flags
|=
LIBFLAG_FHASDISKIMAGE
;
else
{
...
...
dlls/oleaut32/tests/typelib.c
View file @
88fc9164
...
...
@@ -4806,7 +4806,7 @@ static const char manifest_dep[] =
"<assemblyIdentity version=
\"
1.2.3.4
\"
name=
\"
testdep
\"
type=
\"
win32
\"
processorArchitecture=
\"
"
ARCH
"
\"
/>"
"<file name=
\"
test_actctx_tlb.tlb
\"
>"
" <typelib tlbid=
\"
{d96d8a3e-78b6-4c8d-8f27-059db959be8a}
\"
version=
\"
2.7
\"
helpdir=
\"\"
resourceid=
\"
409
\"
"
" flags=
\"
R
ESTRICTED,C
ONTROL
\"
"
" flags=
\"
R
estricted,c
ONTROL
\"
"
" />"
"</file>"
"<file name=
\"
test_actctx_tlb2.tlb
\"
>"
...
...
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