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
95fd3cd4
Commit
95fd3cd4
authored
Jul 30, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Jul 30, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented CoRevokeClassObject stub needed by Acrobat 3 16 bit.
parent
53477e49
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
compobj.spec
if1632/compobj.spec
+1
-1
compobj.c
ole/compobj.c
+12
-0
No files found.
if1632/compobj.spec
View file @
95fd3cd4
...
...
@@ -6,7 +6,7 @@ type win16
3 pascal CoUninitialize() CoUninitialize16
4 pascal CoGetMalloc(long ptr) CoGetMalloc16
5 pascal CoRegisterClassObject(ptr ptr long long ptr) CoRegisterClassObject16
6
stub COREVOKECLASSOBJECT
6
pascal CoRevokeClassObject(long) CoRevokeClassObject16
7 pascal CoGetClassObject(ptr long ptr ptr ptr) CoGetClassObject
8 stub COMARSHALINTERFACE
9 stub COUNMARSHALINTERFACE
...
...
ole/compobj.c
View file @
95fd3cd4
...
...
@@ -997,6 +997,18 @@ HRESULT WINAPI CoRegisterClassObject16(
return
0
;
}
/******************************************************************************
* CoRevokeClassObject16 [COMPOBJ.6]
*
*/
HRESULT
WINAPI
CoRevokeClassObject16
(
DWORD
dwRegister
/* token on class obj */
)
{
FIXME
(
"(0x%08lx),stub!
\n
"
,
dwRegister
);
return
0
;
}
/***
* COM_GetRegisteredClassObject
*
...
...
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