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
bbb28c93
Commit
bbb28c93
authored
Mar 11, 2023
by
Daniel Tang
Committed by
Alexandre Julliard
Mar 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.networking: Stub DllGetActivationFactory().
parent
ce18bd4d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
Makefile.in
dlls/windows.networking/Makefile.in
+1
-0
main.c
dlls/windows.networking/main.c
+19
-0
windows.networking.spec
dlls/windows.networking/windows.networking.spec
+1
-1
No files found.
dlls/windows.networking/Makefile.in
View file @
bbb28c93
MODULE
=
windows.networking.dll
IMPORTS
=
combase
C_SRCS
=
\
main.c
dlls/windows.networking/main.c
View file @
bbb28c93
...
...
@@ -18,12 +18,31 @@
#include <windef.h>
#include <winnt.h>
#include <winstring.h>
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
winsock
);
static
const
char
*
debugstr_hstring
(
HSTRING
hstr
)
{
const
WCHAR
*
str
;
UINT32
len
;
if
(
hstr
&&
!
((
ULONG_PTR
)
hstr
>>
16
))
return
"(invalid)"
;
str
=
WindowsGetStringRawBuffer
(
hstr
,
&
len
);
return
wine_dbgstr_wn
(
str
,
len
);
}
HRESULT
WINAPI
SetSocketMediaStreamingMode
(
BOOL
value
)
{
FIXME
(
"value %d stub!
\n
"
,
value
);
return
S_OK
;
}
HRESULT
WINAPI
DllGetActivationFactory
(
HSTRING
classid
,
void
**
factory
)
{
FIXME
(
"class %s, factory %p.
\n
"
,
debugstr_hstring
(
classid
),
factory
);
*
factory
=
NULL
;
return
CLASS_E_CLASSNOTAVAILABLE
;
}
dlls/windows.networking/windows.networking.spec
View file @
bbb28c93
1 stub @
@ stdcall -private DllCanUnloadNow()
@ st
ub DllGetActivationFactory
@ st
dcall -private DllGetActivationFactory(ptr ptr)
@ stub DllGetClassObject
@ stdcall -private DllMain(long long ptr)
@ stdcall -private DllRegisterServer()
...
...
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