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
59881c14
Commit
59881c14
authored
Jan 16, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl100: Added stubs for AtlAxDialogBox[AW].
parent
bce6ee2b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
6 deletions
+28
-6
atl.spec
dlls/atl/atl.spec
+2
-2
atl100.spec
dlls/atl100/atl100.spec
+2
-2
atl_ax.c
dlls/atl100/atl_ax.c
+22
-0
atl80.spec
dlls/atl80/atl80.spec
+2
-2
No files found.
dlls/atl/atl.spec
View file @
59881c14
...
...
@@ -26,8 +26,8 @@
31 stdcall AtlComQIPtrAssign(ptr ptr ptr) atl100.AtlComQIPtrAssign
32 stdcall AtlInternalQueryInterface(ptr ptr ptr ptr) atl100.AtlInternalQueryInterface
34 stdcall AtlGetVersion(ptr)
35 st
ub
AtlAxDialogBoxW
36 st
ub
AtlAxDialogBoxA
35 st
dcall AtlAxDialogBoxW(long wstr long ptr long) atl100.
AtlAxDialogBoxW
36 st
dcall AtlAxDialogBoxA(long str long ptr long) atl100.
AtlAxDialogBoxA
37 stdcall AtlAxCreateDialogW(long wstr long ptr long) atl100.AtlAxCreateDialogW
38 stdcall AtlAxCreateDialogA(long str long ptr long) atl100.AtlAxCreateDialogA
39 stdcall AtlAxCreateControl(ptr ptr ptr ptr) atl100.AtlAxCreateControl
...
...
dlls/atl100/atl100.spec
View file @
59881c14
...
...
@@ -18,8 +18,8 @@
31 stdcall AtlComQIPtrAssign(ptr ptr ptr)
32 stdcall AtlInternalQueryInterface(ptr ptr ptr ptr)
34 stdcall AtlGetVersion(ptr)
35 st
ub AtlAxDialogBoxW
36 st
ub AtlAxDialogBoxA
35 st
dcall AtlAxDialogBoxW(long wstr long ptr long)
36 st
dcall AtlAxDialogBoxA(long str long ptr long)
37 stdcall AtlAxCreateDialogW(long wstr long ptr long)
38 stdcall AtlAxCreateDialogA(long str long ptr long)
39 stdcall AtlAxCreateControl(ptr ptr ptr ptr)
...
...
dlls/atl100/atl_ax.c
View file @
59881c14
...
...
@@ -1350,3 +1350,25 @@ HRESULT WINAPI AtlAxGetControl(HWND hWnd, IUnknown **pUnk)
return
IOleObject_QueryInterface
(
This
->
control
,
&
IID_IUnknown
,
(
void
**
)
pUnk
);
}
/***********************************************************************
* AtlAxDialogBoxW [atl100.35]
*
*/
INT_PTR
WINAPI
AtlAxDialogBoxW
(
HINSTANCE
hInstance
,
LPCWSTR
lpTemplateName
,
HWND
hWndParent
,
DLGPROC
lpDialogProc
,
LPARAM
dwInitParam
)
{
FIXME
(
"(%p %s %p %p %lx)
\n
"
,
hInstance
,
debugstr_w
(
lpTemplateName
),
hWndParent
,
lpDialogProc
,
dwInitParam
);
return
0
;
}
/***********************************************************************
* AtlAxDialogBoxA [atl100.36]
*
*/
INT_PTR
WINAPI
AtlAxDialogBoxA
(
HINSTANCE
hInstance
,
LPCSTR
lpTemplateName
,
HWND
hWndParent
,
DLGPROC
lpDialogProc
,
LPARAM
dwInitParam
)
{
FIXME
(
"(%p %s %p %p %lx)
\n
"
,
hInstance
,
debugstr_a
(
lpTemplateName
),
hWndParent
,
lpDialogProc
,
dwInitParam
);
return
0
;
}
dlls/atl80/atl80.spec
View file @
59881c14
...
...
@@ -20,8 +20,8 @@
31 stdcall AtlComQIPtrAssign(ptr ptr ptr) atl100.AtlComQIPtrAssign
32 stdcall AtlInternalQueryInterface(ptr ptr ptr ptr) atl100.AtlInternalQueryInterface
34 stdcall AtlGetVersion(ptr)
35 st
ub
AtlAxDialogBoxW
36 st
ub
AtlAxDialogBoxA
35 st
dcall AtlAxDialogBoxW(long wstr long ptr long) atl100.
AtlAxDialogBoxW
36 st
dcall AtlAxDialogBoxA(long str long ptr long) atl100.
AtlAxDialogBoxA
37 stdcall AtlAxCreateDialogW(long wstr long ptr long) atl100.AtlAxCreateDialogW
38 stdcall AtlAxCreateDialogA(long str long ptr long) atl100.AtlAxCreateDialogA
39 stdcall AtlAxCreateControl(ptr ptr ptr ptr) atl100.AtlAxCreateControl
...
...
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