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
4e9cc305
Commit
4e9cc305
authored
Sep 13, 2016
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix aligment of some Web Services structures.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2bc231e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
webservices.h
include/webservices.h
+10
-10
No files found.
include/webservices.h
View file @
4e9cc305
...
...
@@ -360,8 +360,8 @@ typedef struct _WS_INT32_DESCRIPTION {
}
WS_INT32_DESCRIPTION
;
typedef
struct
_WS_INT64_DESCRIPTION
{
__int64
minValue
;
__int64
maxValue
;
__int64
DECLSPEC_ALIGN
(
8
)
minValue
;
__int64
DECLSPEC_ALIGN
(
8
)
maxValue
;
}
WS_INT64_DESCRIPTION
;
typedef
struct
_WS_UINT8_DESCRIPTION
{
...
...
@@ -380,8 +380,8 @@ typedef struct _WS_UINT32_DESCRIPTION {
}
WS_UINT32_DESCRIPTION
;
typedef
struct
_WS_UINT64_DESCRIPTION
{
unsigned
__int64
minValue
;
unsigned
__int64
maxValue
;
unsigned
__int64
DECLSPEC_ALIGN
(
8
)
minValue
;
unsigned
__int64
DECLSPEC_ALIGN
(
8
)
maxValue
;
}
WS_UINT64_DESCRIPTION
;
typedef
struct
_WS_WSZ_DESCRIPTION
{
...
...
@@ -412,8 +412,8 @@ struct _WS_ENUM_DESCRIPTION {
};
struct
_WS_DOUBLE_DESCRIPTION
{
double
minValue
;
double
maxValue
;
double
DECLSPEC_ALIGN
(
8
)
minValue
;
double
DECLSPEC_ALIGN
(
8
)
maxValue
;
};
struct
_WS_GUID_DESCRIPTION
{
...
...
@@ -595,17 +595,17 @@ typedef struct _WS_XML_INT32_TEXT {
typedef
struct
_WS_XML_INT64_TEXT
{
WS_XML_TEXT
text
;
__int64
value
;
__int64
DECLSPEC_ALIGN
(
8
)
value
;
}
WS_XML_INT64_TEXT
;
typedef
struct
_WS_XML_UINT64_TEXT
{
WS_XML_TEXT
text
;
unsigned
__int64
value
;
unsigned
__int64
DECLSPEC_ALIGN
(
8
)
value
;
}
WS_XML_UINT64_TEXT
;
typedef
struct
_WS_XML_DOUBLE_TEXT
{
WS_XML_TEXT
text
;
double
value
;
double
DECLSPEC_ALIGN
(
8
)
value
;
}
WS_XML_DOUBLE_TEXT
;
typedef
struct
_WS_XML_GUID_TEXT
{
...
...
@@ -1097,7 +1097,7 @@ typedef enum {
}
WS_DATETIME_FORMAT
;
struct
_WS_DATETIME
{
unsigned
__int64
ticks
;
unsigned
__int64
DECLSPEC_ALIGN
(
8
)
ticks
;
WS_DATETIME_FORMAT
format
;
};
...
...
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