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
18b1f5ca
Commit
18b1f5ca
authored
Mar 29, 2011
by
David Hedberg
Committed by
Alexandre Julliard
Mar 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Add implementation of DllRegisterServer/DllUnregisterServer.
parent
49250bec
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
56 additions
and
0 deletions
+56
-0
Makefile.in
dlls/comdlg32/Makefile.in
+2
-0
cdlg32.c
dlls/comdlg32/cdlg32.c
+18
-0
comdlg32.spec
dlls/comdlg32/comdlg32.spec
+2
-0
comdlg32_classes.idl
dlls/comdlg32/comdlg32_classes.idl
+33
-0
wine.inf.in
tools/wine.inf.in
+1
-0
No files found.
dlls/comdlg32/Makefile.in
View file @
18b1f5ca
...
...
@@ -57,4 +57,6 @@ SVG_SRCS = \
pd32_nocollate.svg
\
pd32_portrait.svg
IDL_R_SRCS
=
comdlg32_classes.idl
@MAKE_DLL_RULES@
dlls/comdlg32/cdlg32.c
View file @
18b1f5ca
...
...
@@ -27,6 +27,8 @@
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "objbase.h"
#include "rpcproxy.h"
#include "commdlg.h"
#include "cderr.h"
#include "wine/debug.h"
...
...
@@ -273,3 +275,19 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **ppv)
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/***********************************************************************
* DllRegisterServer (COMMDLG32.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
__wine_register_resources
(
COMDLG32_hInstance
,
NULL
);
}
/***********************************************************************
* DllUnregisterServer (COMMDLG32.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
__wine_unregister_resources
(
COMDLG32_hInstance
,
NULL
);
}
dlls/comdlg32/comdlg32.spec
View file @
18b1f5ca
...
...
@@ -4,6 +4,8 @@
@ stdcall ChooseFontW(ptr)
@ stdcall CommDlgExtendedError()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
@ stdcall FindTextA(ptr)
@ stdcall FindTextW(ptr)
@ stdcall GetFileTitleA(str ptr long)
...
...
dlls/comdlg32/comdlg32_classes.idl
0 → 100644
View file @
18b1f5ca
/*
*
Coclasses
for
comdlg32
*
*
Copyright
2011
David
Hedberg
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
[
helpstring
(
"File Open Dialog"
),
threading
(
apartment
),
uuid
(
dc1c5a9c
-
e88a
-
4
dde
-
a5a1
-
60
f82a20aef7
)
]
coclass
FileOpenDialog
{
interface
IFileOpenDialog
; }
[
helpstring
(
"File Save Dialog"
),
threading
(
apartment
),
uuid
(
c0b4e2f3
-
ba21
-
4773
-
8
dba
-
335
ec946eb8b
)
]
coclass
FileSaveDialog
{
interface
IFileSaveDialog
; }
tools/wine.inf.in
View file @
18b1f5ca
...
...
@@ -2489,6 +2489,7 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
11,,avifil32.dll,1
11,,browseui.dll,1
11,,comctl32.dll,2
11,,comdlg32.dll,1
11,,cryptdlg.dll,1
11,,cryptnet.dll,1
11,,d3dxof.dll,1
...
...
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