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
b58ebef6
Commit
b58ebef6
authored
Feb 12, 2001
by
Andreas Mohr
Committed by
Alexandre Julliard
Feb 12, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added DCICloseProvider stub.
parent
0da6d5e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
dciman32.spec
dlls/dciman32/dciman32.spec
+1
-1
dciman_main.c
dlls/dciman32/dciman_main.c
+11
-1
No files found.
dlls/dciman32/dciman32.spec
View file @
b58ebef6
...
...
@@ -5,7 +5,7 @@ import kernel32.dll
import ntdll.dll
@ stub DCIBeginAccess
@ st
ub
DCICloseProvider
@ st
dcall DCICloseProvider(long)
DCICloseProvider
@ stub DCICreateOffscreen
@ stub DCICreateOverlay
@ stub DCICreatePrimary
...
...
dlls/dciman32/dciman_main.c
View file @
b58ebef6
/*
* Implementation of DCIMAN32 - Direct C? Interface Manager?
* Implementation of DCIMAN32 - DCI Manager
* "Device Context Interface" ?
*
* Copyright 2000 Marcus Meissner
*/
...
...
@@ -18,3 +19,12 @@ DCIOpenProvider(void) {
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* DCICloseProvider (DCIMAN32.@)
*/
void
WINAPI
DCICloseProvider
(
HDC
hdc
)
{
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
;
}
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