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
c57519cf
Commit
c57519cf
authored
14 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
msdaps: Convert dll registration to the IRegistrar mechanism.
parent
6b7c7467
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
dlls/msdaps/Makefile.in
+5
-2
5 additions, 2 deletions
dlls/msdaps/Makefile.in
dlls/msdaps/main.c
+18
-0
18 additions, 0 deletions
dlls/msdaps/main.c
dlls/msdaps/regsvr.c
+0
-608
0 additions, 608 deletions
dlls/msdaps/regsvr.c
dlls/msdaps/row_server.idl
+16
-0
16 additions, 0 deletions
dlls/msdaps/row_server.idl
with
39 additions
and
610 deletions
dlls/msdaps/Makefile.in
+
5
−
2
View file @
c57519cf
MODULE
=
msdaps.dll
IMPORTS
=
uuid oleaut32 ole32 rpcrt4 advapi32
EXTRADEFS
=
-DREGISTER_
PROXY_
DLL
-DPROXY_CLSID_IS
=
"{ 0x06210e88, 0x01f5, 0x11d1, { 0xb5, 0x12, 0x00, 0x80, 0xc7, 0x81, 0xc3, 0x84 } }"
-DENTRY_PREFIX
=
msdaps_
EXTRADEFS
=
-D
WINE_
REGISTER_DLL
-DPROXY_CLSID_IS
=
"{ 0x06210e88, 0x01f5, 0x11d1, { 0xb5, 0x12, 0x00, 0x80, 0xc7, 0x81, 0xc3, 0x84 } }"
-DENTRY_PREFIX
=
msdaps_
EXTRAIDLFLAGS
=
--win32-align
=
2
EXTRA_OBJS
=
dlldata.o
C_SRCS
=
\
main.c
\
regsvr.c
\
row_server.c
\
usrmarshal.c
...
...
@@ -19,4 +18,8 @@ IDL_P_SRCS = \
msdaps.idl
\
row_server.idl
IDL_R_SRCS
=
\
msdaps.idl
\
row_server.idl
@MAKE_DLL_RULES@
This diff is collapsed.
Click to expand it.
dlls/msdaps/main.c
+
18
−
0
View file @
c57519cf
...
...
@@ -43,6 +43,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(oledb);
extern
BOOL
WINAPI
msdaps_DllMain
(
HINSTANCE
,
DWORD
,
LPVOID
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
msdaps_DllGetClassObject
(
REFCLSID
,
REFIID
,
LPVOID
*
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
msdaps_DllCanUnloadNow
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
msdaps_DllRegisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
msdaps_DllUnregisterServer
(
void
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* DllMain
...
...
@@ -166,3 +168,19 @@ HRESULT WINAPI DllCanUnloadNow(void)
{
return
msdaps_DllCanUnloadNow
();
}
/***********************************************************************
* DllRegisterServer
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
msdaps_DllRegisterServer
();
}
/***********************************************************************
* DllUnregisterServer
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
msdaps_DllUnregisterServer
();
}
This diff is collapsed.
Click to expand it.
dlls/msdaps/regsvr.c
deleted
100644 → 0
+
0
−
608
View file @
6b7c7467
This diff is collapsed.
Click to expand it.
dlls/msdaps/row_server.idl
+
16
−
0
View file @
c57519cf
...
...
@@ -175,6 +175,10 @@ typedef struct
}
[
helpstring
(
"Wine OLE DB Row Server"
),
threading
(
both
),
progid
(
"WINEDBROWPRX.AsServer.1"
),
vi_progid
(
"WINEDBROWPRX.AsServer"
),
uuid
(
38248178
-
cf6d
-
11
de
-
abe5
-
000
c2916d865
)
]
coclass
wine_row_server
...
...
@@ -183,6 +187,10 @@ coclass wine_row_server
}
[
helpstring
(
"Wine OLE DB Row Proxy"
),
threading
(
both
),
progid
(
"WINEDBROWPRX.AsProxy.1"
),
vi_progid
(
"WINEDBROWPRX.AsProxy"
),
uuid
(
38248179
-
cf6d
-
11
de
-
abe5
-
000
c2916d865
)
]
coclass
wine_row_proxy
...
...
@@ -191,6 +199,10 @@ coclass wine_row_proxy
}
[
helpstring
(
"Wine OLE DB Rowset Server"
),
threading
(
both
),
progid
(
"WINEDBRSTPRX.AsServer.1"
),
vi_progid
(
"WINEDBRSTPRX.AsServer"
),
uuid
(
3824817
a
-
cf6d
-
11
de
-
abe5
-
000
c2916d865
)
]
coclass
wine_rowset_server
...
...
@@ -199,6 +211,10 @@ coclass wine_rowset_server
}
[
helpstring
(
"Wine OLE DB Rowset Proxy"
),
threading
(
both
),
progid
(
"WINEDBRSTPRX.AsProxy.1"
),
vi_progid
(
"WINEDBRSTPRX.AsProxy"
),
uuid
(
3824817b
-
cf6d
-
11
de
-
abe5
-
000
c2916d865
)
]
coclass
wine_rowset_proxy
...
...
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