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
aece1f73
Commit
aece1f73
authored
Dec 02, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
objsel: Convert dll registration to the IRegistrar mechanism.
parent
7e863444
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
4 deletions
+49
-4
Makefile.in
dlls/objsel/Makefile.in
+3
-2
objsel.c
dlls/objsel/objsel.c
+19
-0
objsel_classes.idl
dlls/objsel/objsel_classes.idl
+25
-0
regsvr.c
dlls/objsel/regsvr.c
+0
-0
objsel.h
include/objsel.h
+2
-2
No files found.
dlls/objsel/Makefile.in
View file @
aece1f73
...
...
@@ -3,8 +3,9 @@ IMPORTS = strmiids uuid ole32 advapi32
C_SRCS
=
\
factory.c
\
objsel.c
\
regsvr.c
objsel.c
IDL_R_SRCS
=
objsel_classes.idl
RC_SRCS
=
objsel.rc
...
...
dlls/objsel/objsel.c
View file @
aece1f73
...
...
@@ -19,6 +19,7 @@
*/
#include "objsel_private.h"
#include "rpcproxy.h"
#include "wine/debug.h"
...
...
@@ -69,6 +70,24 @@ HRESULT WINAPI DllCanUnloadNow(void)
}
/***********************************************************************
* DllRegisterServer (OBJSEL.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
__wine_register_resources
(
hInstance
,
NULL
);
}
/***********************************************************************
* DllUnregisterServer (OBJSEL.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
__wine_unregister_resources
(
hInstance
,
NULL
);
}
/**********************************************************************
* OBJSEL_IDsObjectPicker_Destroy (also IUnknown)
*/
...
...
dlls/objsel/objsel_classes.idl
0 → 100644
View file @
aece1f73
/*
*
COM
Classes
for
objsel
*
*
Copyright
2010
Alexandre
Julliard
*
*
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
*/
[
threading
(
both
),
uuid
(
17
d6ccd8
-
3b7b
-
11
d2
-
b9e0
-
00
c04fd8dbf7
)
]
coclass
DsObjectPicker
{
interface
IDsObjectPicker
; }
dlls/objsel/regsvr.c
deleted
100644 → 0
View file @
7e863444
This diff is collapsed.
Click to expand it.
include/objsel.h
View file @
aece1f73
...
...
@@ -21,8 +21,8 @@
extern
"C"
{
#endif
DEFINE_GUID
(
CLSID_DsObjectPicker
,
0x17d6ccd8
,
0x3b7b
,
0x11d2
,
0x
00b9
,
0xe0
,
0x00
,
0xc0
,
0x4f
,
0xd8
,
0xdb
,
0xf7
);
DEFINE_GUID
(
IID_IDsObjectPicker
,
0x0c87e64e
,
0x3b7a
,
0x11d2
,
0x00b9
,
0xe0
,
0x00
,
0xc0
,
0x4f
,
0xd8
,
0xdb
,
0xf7
);
DEFINE_GUID
(
CLSID_DsObjectPicker
,
0x17d6ccd8
,
0x3b7b
,
0x11d2
,
0x
b9
,
0xe0
,
0x00
,
0xc0
,
0x4f
,
0xd8
,
0xdb
,
0xf7
);
DEFINE_GUID
(
IID_IDsObjectPicker
,
0x0c87e64e
,
0x3b7a
,
0x11d2
,
0xb9
,
0xe0
,
0x00
,
0xc0
,
0x4f
,
0xd8
,
0xdb
,
0xf7
);
#define CFSTR_DSOP_DS_SELECTION_LIST TEXT("CFSTR_DSOP_DS_SELECTION_LIST")
...
...
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