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
21e5c4c4
Commit
21e5c4c4
authored
Mar 14, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sxs: Add a stub implementation of IAssemblyName.
parent
cc3d2101
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
223 additions
and
1 deletion
+223
-1
Makefile.in
dlls/sxs/Makefile.in
+1
-0
name.c
dlls/sxs/name.c
+220
-0
sxs.spec
dlls/sxs/sxs.spec
+1
-1
winsxs.idl
include/winsxs.idl
+1
-0
No files found.
dlls/sxs/Makefile.in
View file @
21e5c4c4
...
@@ -3,6 +3,7 @@ IMPORTS = oleaut32 ole32
...
@@ -3,6 +3,7 @@ IMPORTS = oleaut32 ole32
C_SRCS
=
\
C_SRCS
=
\
cache.c
\
cache.c
\
name.c
\
sxs.c
sxs.c
@MAKE_DLL_RULES@
@MAKE_DLL_RULES@
dlls/sxs/name.c
0 → 100644
View file @
21e5c4c4
/*
* IAssemblyName implementation
*
* Copyright 2012 Hans Leidekker 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
*/
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "ole2.h"
#include "winsxs.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
sxs
);
struct
name
{
IAssemblyName
IAssemblyName_iface
;
LONG
refs
;
};
static
inline
struct
name
*
impl_from_IAssemblyName
(
IAssemblyName
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
struct
name
,
IAssemblyName_iface
);
}
static
HRESULT
WINAPI
name_QueryInterface
(
IAssemblyName
*
iface
,
REFIID
riid
,
void
**
obj
)
{
struct
name
*
name
=
impl_from_IAssemblyName
(
iface
);
TRACE
(
"%p, %s, %p
\n
"
,
name
,
debugstr_guid
(
riid
),
obj
);
*
obj
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IAssemblyName
))
{
IUnknown_AddRef
(
iface
);
*
obj
=
name
;
return
S_OK
;
}
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
name_AddRef
(
IAssemblyName
*
iface
)
{
struct
name
*
name
=
impl_from_IAssemblyName
(
iface
);
return
InterlockedIncrement
(
&
name
->
refs
);
}
static
ULONG
WINAPI
name_Release
(
IAssemblyName
*
iface
)
{
struct
name
*
name
=
impl_from_IAssemblyName
(
iface
);
ULONG
refs
=
InterlockedDecrement
(
&
name
->
refs
);
if
(
!
refs
)
{
TRACE
(
"destroying %p
\n
"
,
name
);
HeapFree
(
GetProcessHeap
(),
0
,
name
);
}
return
refs
;
}
static
HRESULT
WINAPI
name_SetProperty
(
IAssemblyName
*
iface
,
DWORD
id
,
LPVOID
property
,
DWORD
size
)
{
FIXME
(
"%p, %d, %p, %d
\n
"
,
iface
,
id
,
property
,
size
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_GetProperty
(
IAssemblyName
*
iface
,
DWORD
id
,
LPVOID
buffer
,
LPDWORD
buflen
)
{
FIXME
(
"%p, %d, %p, %p
\n
"
,
iface
,
id
,
buffer
,
buflen
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_Finalize
(
IAssemblyName
*
iface
)
{
FIXME
(
"%p
\n
"
,
iface
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_GetDisplayName
(
IAssemblyName
*
iface
,
LPOLESTR
buffer
,
LPDWORD
buflen
,
DWORD
flags
)
{
FIXME
(
"%p, %p, %p, 0x%08x
\n
"
,
iface
,
buffer
,
buflen
,
flags
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_Reserved
(
IAssemblyName
*
iface
,
REFIID
riid
,
IUnknown
*
pUnkReserved1
,
IUnknown
*
pUnkReserved2
,
LPCOLESTR
szReserved
,
LONGLONG
llReserved
,
LPVOID
pvReserved
,
DWORD
cbReserved
,
LPVOID
*
ppReserved
)
{
FIXME
(
"%p, %s, %p, %p, %s, %x%08x, %p, %d, %p
\n
"
,
iface
,
debugstr_guid
(
riid
),
pUnkReserved1
,
pUnkReserved2
,
debugstr_w
(
szReserved
),
(
DWORD
)(
llReserved
>>
32
),
(
DWORD
)
llReserved
,
pvReserved
,
cbReserved
,
ppReserved
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_GetName
(
IAssemblyName
*
iface
,
LPDWORD
buflen
,
WCHAR
*
buffer
)
{
FIXME
(
"%p, %p, %p
\n
"
,
iface
,
buflen
,
buffer
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_GetVersion
(
IAssemblyName
*
iface
,
LPDWORD
hi
,
LPDWORD
low
)
{
FIXME
(
"%p, %p, %p
\n
"
,
iface
,
hi
,
low
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_IsEqual
(
IAssemblyName
*
name1
,
IAssemblyName
*
name2
,
DWORD
flags
)
{
FIXME
(
"%p, %p, 0x%08x
\n
"
,
name1
,
name2
,
flags
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
name_Clone
(
IAssemblyName
*
iface
,
IAssemblyName
**
name
)
{
FIXME
(
"%p, %p
\n
"
,
iface
,
name
);
return
E_NOTIMPL
;
}
static
const
IAssemblyNameVtbl
name_vtbl
=
{
name_QueryInterface
,
name_AddRef
,
name_Release
,
name_SetProperty
,
name_GetProperty
,
name_Finalize
,
name_GetDisplayName
,
name_Reserved
,
name_GetName
,
name_GetVersion
,
name_IsEqual
,
name_Clone
};
/******************************************************************
* CreateAssemblyNameObject (SXS.@)
*/
HRESULT
WINAPI
CreateAssemblyNameObject
(
LPASSEMBLYNAME
*
obj
,
LPCWSTR
assembly
,
DWORD
flags
,
LPVOID
reserved
)
{
struct
name
*
name
;
TRACE
(
"%p, %s, 0x%08x, %p
\n
"
,
obj
,
debugstr_w
(
assembly
),
flags
,
reserved
);
if
(
!
obj
)
return
E_INVALIDARG
;
*
obj
=
NULL
;
if
(
!
assembly
||
!
assembly
[
0
]
||
flags
!=
CANOF_PARSE_DISPLAY_NAME
)
return
E_INVALIDARG
;
if
(
!
(
name
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
*
name
)
)))
return
E_OUTOFMEMORY
;
name
->
IAssemblyName_iface
.
lpVtbl
=
&
name_vtbl
;
name
->
refs
=
1
;
*
obj
=
&
name
->
IAssemblyName_iface
;
return
S_OK
;
}
dlls/sxs/sxs.spec
View file @
21e5c4c4
@ stdcall CreateAssemblyCache(ptr long)
@ stdcall CreateAssemblyCache(ptr long)
@ st
ub CreateAssemblyNameObject
@ st
dcall CreateAssemblyNameObject(ptr wstr long ptr)
include/winsxs.idl
View file @
21e5c4c4
...
@@ -195,3 +195,4 @@ typedef [public] enum
...
@@ -195,3 +195,4 @@ typedef [public] enum
}
CREATE_ASM_NAME_OBJ_FLAGS
;
}
CREATE_ASM_NAME_OBJ_FLAGS
;
cpp_quote
(
"HRESULT WINAPI CreateAssemblyCache(IAssemblyCache**,DWORD);"
)
cpp_quote
(
"HRESULT WINAPI CreateAssemblyCache(IAssemblyCache**,DWORD);"
)
cpp_quote
(
"HRESULT WINAPI CreateAssemblyNameObject(LPASSEMBLYNAME *,LPCWSTR,DWORD,LPVOID);"
)
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