Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
a650ce11
Commit
a650ce11
authored
12 years ago
by
Jacek Caban
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
atl100: Added AtlWinModuleInit implementation.
parent
1f784a10
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/atl100/atl.c
+15
-0
15 additions, 0 deletions
dlls/atl100/atl.c
dlls/atl100/atl100.spec
+1
-1
1 addition, 1 deletion
dlls/atl100/atl100.spec
include/atlbase.h
+1
-0
1 addition, 0 deletions
include/atlbase.h
with
17 additions
and
1 deletion
dlls/atl100/atl.c
+
15
−
0
View file @
a650ce11
...
...
@@ -287,6 +287,21 @@ HRESULT WINAPI AtlLoadTypeLib(HINSTANCE inst, LPCOLESTR lpszIndex,
return
S_OK
;
}
/***********************************************************************
* 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]
*/
...
...
This diff is collapsed.
Click to expand it.
dlls/atl100/atl100.spec
+
1
−
1
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
This diff is collapsed.
Click to expand it.
include/atlbase.h
+
1
−
0
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
*
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment