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
14ab04ab
Commit
14ab04ab
authored
Apr 07, 2014
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netprofm: Register interfaces.
parent
ff334121
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
50 additions
and
4 deletions
+50
-4
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
Makefile.in
dlls/netprofm/Makefile.in
+2
-0
main.c
dlls/netprofm/main.c
+16
-0
netprofm.idl
dlls/netprofm/netprofm.idl
+23
-0
netprofm.spec
dlls/netprofm/netprofm.spec
+2
-2
netlistmgr.idl
include/netlistmgr.idl
+5
-0
No files found.
configure
View file @
14ab04ab
...
...
@@ -17053,7 +17053,7 @@ wine_fn_config_dll netapi32 enable_netapi32 implib
wine_fn_config_test dlls/netapi32/tests netapi32_test
wine_fn_config_dll netcfgx enable_netcfgx clean
wine_fn_config_test dlls/netcfgx/tests netcfgx_test
wine_fn_config_dll netprofm enable_netprofm
wine_fn_config_dll netprofm enable_netprofm
clean
wine_fn_config_dll newdev enable_newdev implib
wine_fn_config_dll normaliz enable_normaliz implib
wine_fn_config_dll npmshtml enable_npmshtml
...
...
configure.ac
View file @
14ab04ab
...
...
@@ -3031,7 +3031,7 @@ WINE_CONFIG_DLL(netapi32,,[implib])
WINE_CONFIG_TEST(dlls/netapi32/tests)
WINE_CONFIG_DLL(netcfgx,,[clean])
WINE_CONFIG_TEST(dlls/netcfgx/tests)
WINE_CONFIG_DLL(netprofm)
WINE_CONFIG_DLL(netprofm
,,[clean]
)
WINE_CONFIG_DLL(newdev,,[implib])
WINE_CONFIG_DLL(normaliz,,[implib])
WINE_CONFIG_DLL(npmshtml)
...
...
dlls/netprofm/Makefile.in
View file @
14ab04ab
...
...
@@ -3,3 +3,5 @@ MODULE = netprofm.dll
C_SRCS
=
\
list.c
\
main.c
IDL_SRCS
=
netprofm.idl
dlls/netprofm/main.c
View file @
14ab04ab
...
...
@@ -144,3 +144,19 @@ HRESULT WINAPI DllCanUnloadNow( void )
{
return
S_FALSE
;
}
/***********************************************************************
* DllRegisterServer (NETPROFM.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
__wine_register_resources
(
instance
);
}
/***********************************************************************
* DllUnregisterServer (NETPROFM.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
__wine_unregister_resources
(
instance
);
}
dlls/netprofm/netprofm.idl
0 → 100644
View file @
14ab04ab
/*
*
COM
Classes
for
netprofm
*
*
Copyright
2014
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
*/
#
pragma
makedep
register
#
include
"netlistmgr.idl"
dlls/netprofm/netprofm.spec
View file @
14ab04ab
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ st
ub DllRegisterServer
@ st
ub DllUnregisterServer
@ st
dcall -private DllRegisterServer()
@ st
dcall -private DllUnregisterServer()
include/netlistmgr.idl
View file @
14ab04ab
...
...
@@ -19,6 +19,10 @@
import
"oaidl.idl"
;
import
"objidl.idl"
;
#
ifndef
__WIDL__
#
define
threading
(
model
)
#
endif
interface
IEnumNetworks
;
interface
IEnumNetworkConnections
;
interface
INetwork
;
...
...
@@ -80,6 +84,7 @@ interface INetworkListManager : IDispatch
}
[
threading
(
both
),
uuid
(
dcb00c01
-
570
f
-
4
a9b
-
8
d69
-
199
fdba5723b
)
]
coclass
NetworkListManager
{
interface
INetworkListManager
; }
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