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
a47a0e3b
Commit
a47a0e3b
authored
Jan 20, 2005
by
Ulrich Czekalla
Committed by
Alexandre Julliard
Jan 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub implementation of NetGetJoinInformation.
parent
62b94d89
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
62 additions
and
0 deletions
+62
-0
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-0
wksta.c
dlls/netapi32/wksta.c
+16
-0
Makefile.in
include/Makefile.in
+1
-0
lm.h
include/lm.h
+1
-0
lmjoin.h
include/lmjoin.h
+43
-0
No files found.
dlls/netapi32/netapi32.spec
View file @
a47a0e3b
...
...
@@ -76,6 +76,7 @@
@ stub NetGetAnyDCName
@ stdcall NetGetDCName(wstr wstr ptr)
@ stub NetGetDisplayInformationIndex
@ stdcall NetGetJoinInformation(wstr ptr ptr)
@ stub NetGroupAdd
@ stub NetGroupAddUser
@ stub NetGroupDel
...
...
dlls/netapi32/wksta.c
View file @
a47a0e3b
...
...
@@ -547,3 +547,19 @@ NET_API_STATUS WINAPI NetWkstaGetInfo( LPWSTR servername, DWORD level,
}
return
ret
;
}
/************************************************************
* NetGetJoinInformation (NETAPI32.@)
*/
NET_API_STATUS
NET_API_FUNCTION
NetGetJoinInformation
(
LPCWSTR
Server
,
LPWSTR
*
Name
,
PNETSETUP_JOIN_STATUS
type
)
{
FIXME
(
"Stub %s %p %p
\n
"
,
wine_dbgstr_w
(
Server
),
Name
,
type
);
*
Name
=
NULL
;
*
type
=
NetSetupUnknownStatus
;
return
NERR_Success
;
}
include/Makefile.in
View file @
a47a0e3b
...
...
@@ -133,6 +133,7 @@ WINDOWS_INCLUDES = \
lmbrowsr.h
\
lmcons.h
\
lmerr.h
\
lmjoin.h
\
lmserver.h
\
lmshare.h
\
lmstats.h
\
...
...
include/lm.h
View file @
a47a0e3b
...
...
@@ -28,5 +28,6 @@
#include <lmwksta.h>
#include <lmapibuf.h>
#include <lmstats.h>
#include <lmjoin.h>
#endif
include/lmjoin.h
0 → 100644
View file @
a47a0e3b
/*
* Copyright 2005 Ulrich Czekalla (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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_LMJOIN_H
#define __WINE_LMJOIN_H
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
enum
tagNETSETUP_JOIN_STATUS
{
NetSetupUnknownStatus
=
0
,
NetSetupUnjoined
,
NetSetupWorkgroupName
,
NetSetupDomainName
}
NETSETUP_JOIN_STATUS
,
*
PNETSETUP_JOIN_STATUS
;
NET_API_STATUS
NET_API_FUNCTION
NetGetJoinInformation
(
LPCWSTR
Server
,
LPWSTR
*
Name
,
PNETSETUP_JOIN_STATUS
type
);
#ifdef __cplusplus
}
#endif
#endif
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