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
7a82d78b
Commit
7a82d78b
authored
Jul 18, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
krnl386: Use nameless unions/structs.
parent
f5c4ae7c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
int2f.c
dlls/krnl386.exe16/int2f.c
+0
-1
local.c
dlls/krnl386.exe16/local.c
+3
-4
vxd.c
dlls/krnl386.exe16/vxd.c
+0
-1
No files found.
dlls/krnl386.exe16/int2f.c
View file @
7a82d78b
...
...
@@ -25,7 +25,6 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#define NONAMELESSUNION
#include "wine/winbase16.h"
#include "wine/debug.h"
#include "winternl.h"
...
...
dlls/krnl386.exe16/local.c
View file @
7a82d78b
...
...
@@ -27,7 +27,6 @@
* parameter than usual.
*/
#define NONAMELESSUNION
#include <stdlib.h>
#include <string.h>
#include "wine/winbase16.h"
...
...
@@ -2160,9 +2159,9 @@ BOOL16 WINAPI Local32Info16( LOCAL32INFO *pLocal32Info, HGLOBAL16 handle )
{
if
(
entry
.
wFlags
&
PROCESS_HEAP_REGION
)
{
pLocal32Info
->
dwMemReserved
+=
entry
.
u
.
Region
.
dwCommittedSize
+
entry
.
u
.
Region
.
dwUnCommittedSize
;
pLocal32Info
->
dwMemCommitted
=
entry
.
u
.
Region
.
dwCommittedSize
;
pLocal32Info
->
dwMemReserved
+=
entry
.
Region
.
dwCommittedSize
+
entry
.
Region
.
dwUnCommittedSize
;
pLocal32Info
->
dwMemCommitted
=
entry
.
Region
.
dwCommittedSize
;
}
else
if
(
!
(
entry
.
wFlags
&
PROCESS_HEAP_ENTRY_BUSY
))
{
...
...
dlls/krnl386.exe16/vxd.c
View file @
7a82d78b
...
...
@@ -27,7 +27,6 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#define NONAMELESSUNION
#include "windef.h"
#include "winbase.h"
#include "winerror.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