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
a650ce11
Commit
a650ce11
authored
Dec 18, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl100: Added AtlWinModuleInit implementation.
parent
1f784a10
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
atl.c
dlls/atl100/atl.c
+15
-0
atl100.spec
dlls/atl100/atl100.spec
+1
-1
atlbase.h
include/atlbase.h
+1
-0
No files found.
dlls/atl100/atl.c
View file @
a650ce11
...
...
@@ -288,6 +288,21 @@ HRESULT WINAPI AtlLoadTypeLib(HINSTANCE inst, LPCOLESTR lpszIndex,
}
/***********************************************************************
* AtlWinModuleInit [atl100.65]
*/
HRESULT
WINAPI
AtlWinModuleInit
(
_ATL_WIN_MODULE
*
winmod
)
{
TRACE
(
"(%p
\n
"
,
winmod
);
if
(
winmod
->
cbSize
!=
sizeof
(
*
winmod
))
return
E_INVALIDARG
;
InitializeCriticalSection
(
&
winmod
->
m_csWindowCreate
);
winmod
->
m_pCreateWndList
=
NULL
;
return
S_OK
;
}
/***********************************************************************
* AtlWinModuleAddCreateWndData [atl100.43]
*/
void
WINAPI
AtlWinModuleAddCreateWndData
(
_ATL_WIN_MODULE
*
pM
,
_AtlCreateWndData
*
pData
,
void
*
pvObject
)
...
...
dlls/atl100/atl100.spec
View file @
a650ce11
...
...
@@ -46,7 +46,7 @@
62 stub AtlWinModuleRegisterClassExW
63 stub AtlWinModuleRegisterClassExA
64 stdcall AtlCallTermFunc(ptr)
65 st
ub AtlWinModuleInit
65 st
dcall AtlWinModuleInit(ptr)
66 stub AtlWinModuleTerm
67 stub AtlSetPerUserRegistration
68 stub AtlGetPerUserRegistration
include/atlbase.h
View file @
a650ce11
...
...
@@ -221,6 +221,7 @@ HRESULT WINAPI AtlFreeMarshalStream(IStream *pStream);
HRESULT
WINAPI
AtlInternalQueryInterface
(
void
*
pThis
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
void
**
ppvObject
);
HRESULT
WINAPI
AtlMarshalPtrInProc
(
IUnknown
*
pUnk
,
const
IID
*
iid
,
IStream
**
ppStream
);
void
WINAPI
AtlModuleAddCreateWndData
(
_ATL_MODULEW
*
pM
,
_AtlCreateWndData
*
pData
,
void
*
pvObject
);
HRESULT
WINAPI
AtlWinModuleInit
(
_ATL_WIN_MODULE
*
);
void
WINAPI
AtlWinModuleAddCreateWndData
(
_ATL_WIN_MODULE
*
,
_AtlCreateWndData
*
,
void
*
);
HRESULT
WINAPI
AtlModuleAddTermFunc
(
_ATL_MODULE
*
pM
,
_ATL_TERMFUNC
*
pFunc
,
DWORD_PTR
dw
);
void
WINAPI
AtlCallTermFunc
(
_ATL_MODULE
*
);
...
...
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