Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
69b54d4e
Commit
69b54d4e
authored
Nov 28, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 28, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added AtlAxCreateControl stub implementation.
parent
0adec2b3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
atl.spec
dlls/atl/atl.spec
+1
-1
atl_main.c
dlls/atl/atl_main.c
+10
-0
atlbase.h
dlls/atl/atlbase.h
+1
-0
No files found.
dlls/atl/atl.spec
View file @
69b54d4e
...
...
@@ -30,7 +30,7 @@
36 stub AtlAxDialogBoxA
37 stub AtlAxCreateDialogW
38 stub AtlAxCreateDialogA
39 st
ub AtlAxCreateControl
39 st
dcall AtlAxCreateControl(ptr ptr ptr ptr)
40 stub AtlAxCreateControlEx
41 stub AtlAxAttachControl
42 stdcall AtlAxWinInit()
...
...
dlls/atl/atl_main.c
View file @
69b54d4e
...
...
@@ -314,3 +314,13 @@ HRESULT WINAPI AtlModuleUnregisterServer(_ATL_MODULEW *pm, const CLSID *clsid)
FIXME
(
"%p %s
\n
"
,
pm
,
debugstr_guid
(
clsid
));
return
E_FAIL
;
}
/***********************************************************************
* AtlAxCreateControl [ATL.@]
*/
HRESULT
WINAPI
AtlAxCreateControl
(
LPCOLESTR
lpszName
,
HWND
hWnd
,
IStream
*
pStream
,
IUnknown
**
ppUnkContainer
)
{
FIXME
(
"%s %p %p %p)
\n
"
,
debugstr_w
(
lpszName
),
hWnd
,
pStream
,
ppUnkContainer
);
return
E_NOTIMPL
;
}
dlls/atl/atlbase.h
View file @
69b54d4e
...
...
@@ -142,6 +142,7 @@ struct _ATL_REGMAP_ENTRY
};
HRESULT
WINAPI
AtlAdvise
(
IUnknown
*
pUnkCP
,
IUnknown
*
pUnk
,
const
IID
*
iid
,
LPDWORD
dpw
);
HRESULT
WINAPI
AtlAxCreateControl
(
LPCOLESTR
,
HWND
,
IStream
*
,
IUnknown
**
);
HRESULT
WINAPI
AtlFreeMarshalStream
(
IStream
*
pStream
);
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
pThis
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
);
HRESULT
WINAPI
AtlMarshalPtrInProc
(
IUnknown
*
pUnk
,
const
IID
*
iid
,
IStream
**
ppStream
);
...
...
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