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
ef2f455c
Commit
ef2f455c
authored
Feb 17, 2009
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Feb 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fix PutProperty_CLASSIDPROP check under win98 to w2k.
parent
056359cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
url.c
dlls/urlmon/tests/url.c
+8
-2
No files found.
dlls/urlmon/tests/url.c
View file @
ef2f455c
...
...
@@ -69,6 +69,12 @@ DEFINE_GUID(IID_IBindStatusCallbackHolder,0x79eac9cc,0xbaf9,0x11ce,0x8c,0x82,0x0
expect_ ## func = called_ ## func = FALSE; \
}while(0)
#define CHECK_CALLED_BROKEN(func) \
do { \
ok(called_ ## func || broken(!called_ ## func), "expected " #func "\n"); \
expect_ ## func = called_ ## func = FALSE; \
}while(0)
#define CLEAR_CALLED(func) \
expect_ ## func = called_ ## func = FALSE
...
...
@@ -313,7 +319,7 @@ static DWORD WINAPI thread_proc(PVOID arg)
CHECK_CALLED
(
Obj_OnProgress_BEGINSYNCOPERATION
);
CHECK_CALLED
(
CreateInstance
);
CHECK_CALLED
(
PutProperty_MIMETYPEPROP
);
CHECK_CALLED
(
PutProperty_CLASSIDPROP
);
CHECK_CALLED
_BROKEN
(
PutProperty_CLASSIDPROP
);
CHECK_CALLED
(
Load
);
CHECK_CALLED
(
Obj_OnProgress_ENDSYNCOPERATION
);
CHECK_CALLED
(
OnObjectAvailable
);
...
...
@@ -612,7 +618,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
CHECK_CALLED
(
Obj_OnProgress_BEGINSYNCOPERATION
);
CHECK_CALLED
(
CreateInstance
);
CHECK_CALLED
(
PutProperty_MIMETYPEPROP
);
CHECK_CALLED
(
PutProperty_CLASSIDPROP
);
CHECK_CALLED
_BROKEN
(
PutProperty_CLASSIDPROP
);
CHECK_CALLED
(
Load
);
CHECK_CALLED
(
Obj_OnProgress_ENDSYNCOPERATION
);
CHECK_CALLED
(
OnObjectAvailable
);
...
...
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