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
f42391b5
Commit
f42391b5
authored
Mar 21, 2024
by
Vijay Kiran Kamuju
Committed by
Alexandre Julliard
Apr 17, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add NetRemoteTOD stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56369
parent
bf12d17b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
62 additions
and
2 deletions
+62
-2
netapi32.c
dlls/netapi32/netapi32.c
+12
-0
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
srvcli.spec
dlls/srvcli/srvcli.spec
+1
-1
Makefile.in
include/Makefile.in
+1
-0
lmremutl.h
include/lmremutl.h
+47
-0
No files found.
dlls/netapi32/netapi32.c
View file @
f42391b5
...
...
@@ -36,6 +36,7 @@
#include "atsvc.h"
#include "lmapibuf.h"
#include "lmbrowsr.h"
#include "lmremutl.h"
#include "lmshare.h"
#include "lmwksta.h"
#include "netbios.h"
...
...
@@ -2585,6 +2586,17 @@ NET_API_STATUS WINAPI NetLocalGroupSetMembers(
}
/************************************************************
* NetRemoteTOD (NETAPI32.@)
*/
NET_API_STATUS
NET_API_FUNCTION
NetRemoteTOD
(
LPCWSTR
servername
,
LPBYTE
*
buf
)
{
FIXME
(
"(%s %p) stub!
\n
"
,
debugstr_w
(
servername
),
buf
);
return
ERROR_NO_BROWSER_SERVERS_FOUND
;
}
/************************************************************
* DavGetHTTPFromUNCPath (NETAPI32.@)
*/
DWORD
WINAPI
DavGetHTTPFromUNCPath
(
const
WCHAR
*
unc_path
,
WCHAR
*
buf
,
DWORD
*
buflen
)
...
...
dlls/netapi32/netapi32.spec
View file @
f42391b5
...
...
@@ -124,7 +124,7 @@
@ stub NetMessageNameGetInfo
@ stdcall NetQueryDisplayInformation(wstr long long long long ptr ptr)
@ stub NetRemoteComputerSupports
@ st
ub NetRemoteTOD
@ st
dcall NetRemoteTOD(wstr ptr)
@ stub NetReplExportDirAdd
@ stub NetReplExportDirDel
@ stub NetReplExportDirEnum
...
...
dlls/srvcli/srvcli.spec
View file @
f42391b5
...
...
@@ -27,7 +27,7 @@
@ stub NetFileClose
@ stdcall NetFileEnum(wstr wstr wstr long ptr long ptr ptr ptr) netapi32.NetFileEnum
@ stub NetFileGetInfo
@ st
ub
NetRemoteTOD
@ st
dcall NetRemoteTOD(wstr ptr) netapi32.
NetRemoteTOD
@ stub NetServerAliasAdd
@ stub NetServerAliasDel
@ stub NetServerAliasEnum
...
...
include/Makefile.in
View file @
f42391b5
...
...
@@ -408,6 +408,7 @@ SOURCES = \
lmerr.h
\
lmjoin.h
\
lmmsg.h
\
lmremutl.h
\
lmserver.h
\
lmshare.h
\
lmstats.h
\
...
...
include/lmremutl.h
0 → 100644
View file @
f42391b5
/*
* Copyright (C) 2024 Vijay Kiran Kamuju
*
* 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
*/
#ifndef _LMREMUTL_H
#define _LMREMUTL_H
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
_TIME_OF_DAY_INFO
{
DWORD
tod_elapsedt
;
DWORD
tod_msecs
;
DWORD
tod_hours
;
DWORD
tod_mins
;
DWORD
tod_secs
;
DWORD
tod_hunds
;
DWORD
tod_timezone
;
DWORD
tod_tinterval
;
DWORD
tod_day
;
DWORD
tod_month
;
DWORD
tod_year
;
DWORD
tod_weekday
;
}
TIME_OF_DAY_INFO
,
*
PTIME_OF_DAY_INFO
,
*
LPTIME_OF_DAY_INFO
;
NET_API_STATUS
NET_API_FUNCTION
NetRemoteTOD
(
LPCWSTR
,
LPBYTE
*
);
#ifdef __cplusplus
}
#endif
#endif
/* _LMREMUTL_H */
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