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
000a5c73
Commit
000a5c73
authored
Feb 10, 2004
by
Steven Edwards
Committed by
Alexandre Julliard
Feb 10, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Porting Fixes for Mingw/MSVC.
parent
7b6935c2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
4 deletions
+14
-4
nbnamecache.c
dlls/netapi32/nbnamecache.c
+3
-0
nbnamecache.h
dlls/netapi32/nbnamecache.h
+3
-0
netapi32.c
dlls/netapi32/netapi32.c
+1
-1
wksta.c
dlls/netapi32/wksta.c
+6
-2
lmstats.h
include/lmstats.h
+1
-1
No files found.
dlls/netapi32/nbnamecache.c
View file @
000a5c73
...
...
@@ -19,7 +19,10 @@
* rather more efficient than not having a name cache at all.
*/
#include "config.h"
#include "wine/port.h"
#include "wine/debug.h"
#include "nbnamecache.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
netbios
);
...
...
dlls/netapi32/nbnamecache.h
View file @
000a5c73
...
...
@@ -17,6 +17,9 @@
#ifndef __WINE_NBNAMECACHE_H
#define __WINE_NBNAMECACHE_H
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "nb30.h"
...
...
dlls/netapi32/netapi32.c
View file @
000a5c73
...
...
@@ -70,7 +70,7 @@ NET_API_STATUS WINAPI NetServerEnum(
/************************************************************
* NetStatisticsGet (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetStatisticsGet
(
LPWSTR
*
server
,
LPWSTR
*
service
,
NET_API_STATUS
WINAPI
NetStatisticsGet
(
LPWSTR
server
,
LPWSTR
service
,
DWORD
level
,
DWORD
options
,
LPBYTE
*
bufptr
)
{
...
...
dlls/netapi32/wksta.c
View file @
000a5c73
...
...
@@ -18,10 +18,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include "winsock2.h"
#include "nb30.h"
#include "lmcons.h"
#include "lmapibuf.h"
...
...
@@ -234,9 +238,9 @@ static BOOL WkstaEnumAdaptersCallback(UCHAR totalLANAs, UCHAR lanaIndex,
}
NET_API_STATUS
WINAPI
NetWkstaTransportEnum
(
LP
CWSTR
ServerName
,
DWORD
level
,
L
PBYTE
*
pbuf
,
NetWkstaTransportEnum
(
LP
WSTR
ServerName
,
DWORD
level
,
PBYTE
*
pbuf
,
DWORD
prefmaxlen
,
LPDWORD
read_entries
,
LPDWORD
total_entries
,
L
PDWORD
hresume
)
PDWORD
total_entries
,
PDWORD
hresume
)
{
NET_API_STATUS
ret
;
...
...
include/lmstats.h
View file @
000a5c73
...
...
@@ -88,7 +88,7 @@ typedef struct _STAT_SERVER_0 {
DWORD
sts0_bigbufneed
;
}
STAT_SERVER_0
,
*
PSTAT_SERVER_0
,
*
LPSTAT_SERVER_0
;
NET_API_STATUS
WINAPI
NetStatisticsGet
(
LPWSTR
*
server
,
LPWSTR
*
service
,
DWORD
level
,
NET_API_STATUS
WINAPI
NetStatisticsGet
(
LPWSTR
server
,
LPWSTR
service
,
DWORD
level
,
DWORD
options
,
LPBYTE
*
bufptr
);
#ifdef __cplusplus
...
...
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