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
7d8e377a
Commit
7d8e377a
authored
Sep 29, 2005
by
Kevin Koltzau
Committed by
Alexandre Julliard
Sep 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings in 64bit.
parent
d664711c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
info.c
dlls/winspool/info.c
+4
-4
ber.c
dlls/wldap32/ber.c
+1
-1
No files found.
dlls/winspool/info.c
View file @
7d8e377a
...
...
@@ -98,7 +98,7 @@ typedef struct {
static
opened_printer_t
**
printer_handles
;
static
int
nb_printer_handles
;
static
long
next_job_id
=
1
;
static
LONG
next_job_id
=
1
;
static
DWORD
(
WINAPI
*
GDI_CallDeviceCapabilities16
)(
LPCSTR
lpszDevice
,
LPCSTR
lpszPort
,
WORD
fwCapability
,
LPSTR
lpszOutput
,
...
...
@@ -612,7 +612,7 @@ void WINSPOOL_LoadSystemPrinters(void)
*/
static
HANDLE
get_opened_printer_entry
(
LPCWSTR
name
)
{
UINT
handle
=
nb_printer_handles
,
i
;
UINT
_PTR
handle
=
nb_printer_handles
,
i
;
queue_t
*
queue
=
NULL
;
opened_printer_t
*
printer
;
...
...
@@ -681,7 +681,7 @@ end:
*/
static
opened_printer_t
*
get_opened_printer
(
HANDLE
hprn
)
{
int
idx
=
(
int
)
hprn
;
UINT_PTR
idx
=
(
UINT_PTR
)
hprn
;
opened_printer_t
*
ret
=
NULL
;
EnterCriticalSection
(
&
printer_handles_cs
);
...
...
@@ -1655,7 +1655,7 @@ HANDLE WINAPI AddPrinterA(LPSTR pName, DWORD Level, LPBYTE pPrinter)
*/
BOOL
WINAPI
ClosePrinter
(
HANDLE
hPrinter
)
{
int
i
=
(
int
)
hPrinter
;
UINT_PTR
i
=
(
UINT_PTR
)
hPrinter
;
opened_printer_t
*
printer
=
NULL
;
BOOL
ret
=
FALSE
;
...
...
dlls/wldap32/ber.c
View file @
7d8e377a
...
...
@@ -25,7 +25,7 @@
#include "windef.h"
#include "winldap.h"
#define LBER_ERROR (~0U
L
)
#define LBER_ERROR (~0U)
BerElement
*
ber_alloc_t
(
INT
options
)
{
...
...
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