Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
1b8f8bac
Commit
1b8f8bac
authored
5 months ago
by
Deucе
Browse files
Options
Downloads
Patches
Plain Diff
Fix a couple interesting-looking MSVC warnings.
parent
62d75f50
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#6801
failed
5 months ago
Stage: build
Stage: test
Stage: cleanup
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/conio/win32gdi.c
+26
-10
26 additions, 10 deletions
src/conio/win32gdi.c
src/xpdev/dirwrap.c
+4
-3
4 additions, 3 deletions
src/xpdev/dirwrap.c
with
30 additions
and
13 deletions
src/conio/win32gdi.c
+
26
−
10
View file @
1b8f8bac
...
...
@@ -91,11 +91,13 @@ utf8_to_utf16(const uint8_t *str8, int buflen)
if
(
sz
==
0
)
return
NULL
;
ret
=
(
LPWSTR
)
malloc
((
sz
+
1
)
*
sizeof
(
*
ret
));
if
(
sz
==
MultiByteToWideChar
(
CP_UTF8
,
MB_PRECOMPOSED
,
(
LPCCH
)
str8
,
buflen
,
(
LPWSTR
)
ret
,
sz
))
{
ret
[
sz
]
=
0
;
return
ret
;
if
(
ret
!=
NULL
)
{
if
(
sz
==
MultiByteToWideChar
(
CP_UTF8
,
MB_PRECOMPOSED
,
(
LPCCH
)
str8
,
buflen
,
(
LPWSTR
)
ret
,
sz
))
{
ret
[
sz
]
=
0
;
return
ret
;
}
free
(
ret
);
}
free
(
ret
);
return
NULL
;
}
...
...
@@ -170,6 +172,8 @@ gdi_add_key(uint16_t key)
lwch
=
wch
;
if
(
lwch
!=
NULL
)
WriteFile
(
lwch
,
bp
,
remain
,
&
added
,
NULL
);
else
added
=
remain
;
remain
-=
added
;
bp
+=
added
;
}
while
(
remain
>
0
);
...
...
@@ -276,7 +280,6 @@ gdi_handle_wm_sizing(WPARAM wParam, RECT *r)
{
int
ow
,
oh
,
nw
,
nh
;
double
s
;
RECT
tr
=
*
r
;
ow
=
r
->
right
-
r
->
left
;
oh
=
r
->
bottom
-
r
->
top
;
...
...
@@ -569,7 +572,13 @@ get_monitor_size_pos(int *w, int *h, int *xpos, int *ypos)
if
(
!
primary
&&
win
==
NULL
)
primary
=
true
;
mon
=
MonitorFromWindow
(
win
,
primary
?
MONITOR_DEFAULTTOPRIMARY
:
MONITOR_DEFAULTTONEAREST
);
if
(
win
==
NULL
)
{
const
POINT
origin
=
{
0
};
mon
=
MonitorFromPoint
(
origin
,
MONITOR_DEFAULTTOPRIMARY
);
}
else
{
mon
=
MonitorFromWindow
(
win
,
primary
?
MONITOR_DEFAULTTOPRIMARY
:
MONITOR_DEFAULTTONEAREST
);
}
if
(
mon
)
{
mi
.
cbSize
=
sizeof
(
mi
);
ret
=
GetMonitorInfoW
(
mon
,
&
mi
);
...
...
@@ -864,7 +873,9 @@ magic_message(MSG msg)
if
(
hm
)
{
MONITORINFO
mi
=
{
sizeof
(
mi
)};
if
(
GetMonitorInfo
(
hm
,
&
mi
))
{
WINDOWINFO
wi
;
WINDOWINFO
wi
=
{
.
cbSize
=
sizeof
(
WINDOWINFO
);
};
if
(
GetWindowInfo
(
win
,
&
wi
))
{
window_left
=
wi
.
rcWindow
.
left
;
window_top
=
wi
.
rcWindow
.
top
;
...
...
@@ -1157,9 +1168,14 @@ gdi_copytext(const char *text, size_t buflen)
clipBuf
=
GlobalAlloc
(
GMEM_MOVEABLE
,
(
wcslen
(
utf16
)
+
1
)
*
sizeof
(
utf16
[
0
]));
if
(
clipBuf
!=
NULL
)
{
clipStr
=
GlobalLock
(
clipBuf
);
wcscpy
(
clipStr
,
utf16
);
GlobalUnlock
(
clipBuf
);
SetClipboardData
(
CF_UNICODETEXT
,
clipBuf
);
if
(
clipStr
!=
NULL
)
{
wcscpy
(
clipStr
,
utf16
);
GlobalUnlock
(
clipBuf
);
SetClipboardData
(
CF_UNICODETEXT
,
clipBuf
);
}
else
{
GlobalUnlock
(
clipBuf
);
}
}
CloseClipboard
();
}
...
...
This diff is collapsed.
Click to expand it.
src/xpdev/dirwrap.c
+
4
−
3
View file @
1b8f8bac
...
...
@@ -918,12 +918,13 @@ static uint64_t getdiskspace(const char* path, uint64_t unit, bool freespace)
uint64_t
total
;
ULARGE_INTEGER
avail
;
ULARGE_INTEGER
size
;
static
HINSTANCE
hK32
;
GetDiskFreeSpaceEx_t
GDFSE
;
static
HINSTANCE
hK32
=
NULL
;
GetDiskFreeSpaceEx_t
GDFSE
=
NULL
;
if
(
hK32
==
NULL
)
hK32
=
LoadLibraryA
(
"KERNEL32"
);
GDFSE
=
(
GetDiskFreeSpaceEx_t
)
GetProcAddress
(
hK32
,
"GetDiskFreeSpaceExA"
);
if
(
hK32
!=
NULL
)
GDFSE
=
(
GetDiskFreeSpaceEx_t
)
GetProcAddress
(
hK32
,
"GetDiskFreeSpaceExA"
);
if
(
GDFSE
!=
NULL
)
{
/* Windows 95-OSR2 or later */
if
(
!
GDFSE
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment