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
89b18a7e
Commit
89b18a7e
authored
Nov 28, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved EnumPortsA to dlls/winspool.
parent
529da543
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
info.c
dlls/winspool/info.c
+11
-0
newfns.c
win32/newfns.c
+0
-8
No files found.
dlls/winspool/info.c
View file @
89b18a7e
...
...
@@ -2328,3 +2328,14 @@ BOOL WINAPI EnumPrinterDriversA(LPSTR pName, LPSTR pEnvironment, DWORD Level,
return
ret
;
}
/******************************************************************************
* EnumPortsA (WINSPOOL.166)
*/
BOOL
WINAPI
EnumPortsA
(
LPSTR
name
,
DWORD
level
,
LPBYTE
ports
,
DWORD
bufsize
,
LPDWORD
bufneeded
,
LPDWORD
bufreturned
)
{
FIXME
(
"(%s,%ld,%p,%ld,%p,%p), stub!
\n
"
,
name
,
level
,
ports
,
bufsize
,
bufneeded
,
bufreturned
);
return
FALSE
;
}
win32/newfns.c
View file @
89b18a7e
...
...
@@ -200,14 +200,6 @@ BOOL WINAPI SetComputerNameW( LPCWSTR lpComputerName )
}
/******************************************************************************
* EnumPortsA
*/
BOOL
WINAPI
EnumPortsA
(
LPSTR
name
,
DWORD
level
,
LPBYTE
ports
,
DWORD
bufsize
,
LPDWORD
bufneeded
,
LPDWORD
bufreturned
)
{
FIXME
(
"(%s,%ld,%p,%ld,%p,%p), stub!
\n
"
,
name
,
level
,
ports
,
bufsize
,
bufneeded
,
bufreturned
);
return
FALSE
;
}
/******************************************************************************
* CreateIoCompletionPort
*/
HANDLE
WINAPI
CreateIoCompletionPort
(
HANDLE
hFileHandle
,
...
...
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