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
64659785
Commit
64659785
authored
Apr 18, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Uncomment some code to make sure it is compiled, but don't run it.
parent
42b9221f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
marshal.c
dlls/ole32/tests/marshal.c
+4
-7
No files found.
dlls/ole32/tests/marshal.c
View file @
64659785
...
...
@@ -1598,18 +1598,15 @@ static void test_WM_QUIT_handling(void)
}
}
/* doesn't pass with Win9x COM DLLs (even though Essential COM says it should) */
#if 0
static
HANDLE
heventShutdown
;
static void LockModuleOOP()
static
void
LockModuleOOP
(
void
)
{
InterlockedIncrement
(
&
cLocks
);
/* for test purposes only */
CoAddRefServerProcess
();
}
static void UnlockModuleOOP()
static
void
UnlockModuleOOP
(
void
)
{
InterlockedDecrement
(
&
cLocks
);
/* for test purposes only */
if
(
!
CoReleaseServerProcess
())
...
...
@@ -1751,7 +1748,6 @@ static void test_out_of_process_com(void)
CloseHandle
(
heventShutdown
);
}
#endif
static
void
test_ROT
(
void
)
{
...
...
@@ -2013,7 +2009,8 @@ START_TEST(marshal)
test_message_reentrancy
();
test_WM_QUIT_handling
();
/* test_out_of_process_com(); */
/* doesn't pass with Win9x COM DLLs (even though Essential COM says it should) */
if
(
0
)
test_out_of_process_com
();
test_ROT
();
/* FIXME: test GIT */
...
...
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