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
84d9b2c0
Commit
84d9b2c0
authored
Dec 23, 2008
by
Austin English
Committed by
Alexandre Julliard
Dec 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itircl: Add stub functions.
parent
ce578075
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
3 deletions
+30
-3
itircl.spec
dlls/itircl/itircl.spec
+3
-3
itircl_main.c
dlls/itircl/itircl_main.c
+27
-0
No files found.
dlls/itircl/itircl.spec
View file @
84d9b2c0
@ st
ub DllCanUnloadNow
@ st
dcall -private DllCanUnloadNow()
@ stub DllGetClassObject
@ stub DllGetClassObject
@ st
ub DllRegisterServer
@ st
dcall -private DllRegisterServer()
@ st
ub DllUnregisterServer
@ st
dcall -private DllUnregisterServer()
dlls/itircl/itircl_main.c
View file @
84d9b2c0
...
@@ -47,3 +47,30 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
...
@@ -47,3 +47,30 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
return
TRUE
;
}
}
/***********************************************************************
* DllRegisterServer (ITIRCL.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"stub
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* DllRegisterServer (ITIRCL.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXME
(
"stub
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* DllCanUnloadNow (ITIRCL.@)
*/
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
FIXME
(
"stub
\n
"
);
return
S_FALSE
;
}
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