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
f37bbdc1
Commit
f37bbdc1
authored
May 22, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
May 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
propsys: Register CLSID_InMemoryPropertyStore.
parent
0e8b9b12
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
2 deletions
+44
-2
Makefile.in
dlls/propsys/Makefile.in
+2
-0
propsys.spec
dlls/propsys/propsys.spec
+2
-2
propsys_classes.idl
dlls/propsys/propsys_classes.idl
+26
-0
propsys_main.c
dlls/propsys/propsys_main.c
+14
-0
No files found.
dlls/propsys/Makefile.in
View file @
f37bbdc1
...
...
@@ -6,4 +6,6 @@ C_SRCS = \
propsys_main.c
\
propvar.c
IDL_R_SRCS
=
propsys_classes.idl
@MAKE_DLL_RULES@
dlls/propsys/propsys.spec
View file @
f37bbdc1
...
...
@@ -25,8 +25,8 @@
@ stub ClearVariantArray
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ st
ub DllRegisterServer
@ st
ub DllUnregisterServer
@ st
dcall -private DllRegisterServer()
@ st
dcall -private DllUnregisterServer()
@ stub InitPropVariantFromBooleanVector
@ stdcall InitPropVariantFromBuffer(ptr long ptr)
@ stub InitPropVariantFromCLSID
...
...
dlls/propsys/propsys_classes.idl
0 → 100644
View file @
f37bbdc1
/*
*
Coclasses
for
propsys
*
*
Copyright
2012
Vincent
Povirk
for
CodeWeavers
*
*
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
(
"Packed Property Storage Object"
),
threading
(
both
),
uuid
(
9
a02e012
-
6303
-
4
e1e
-
b9a1
-
630
f802592c5
)
]
coclass
InMemoryPropertyStore
{
interface
IPropertyStoreCache
; }
dlls/propsys/propsys_main.c
View file @
f37bbdc1
...
...
@@ -26,12 +26,15 @@
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "rpcproxy.h"
#include "propsys.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
propsys
);
static
HINSTANCE
propsys_hInstance
;
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
...
...
@@ -41,6 +44,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
propsys_hInstance
=
hinstDLL
;
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
case
DLL_PROCESS_DETACH
:
...
...
@@ -52,6 +56,16 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
__wine_register_resources
(
propsys_hInstance
);
}
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
__wine_unregister_resources
(
propsys_hInstance
);
}
HRESULT
WINAPI
PSRegisterPropertySchema
(
PCWSTR
path
)
{
FIXME
(
"%s stub
\n
"
,
debugstr_w
(
path
));
...
...
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