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
63aaf8db
Commit
63aaf8db
authored
May 15, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
May 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Implement more conformance operations and more types.
parent
f69328e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+14
-0
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
63aaf8db
...
...
@@ -459,9 +459,11 @@ PFORMAT_STRING ComputeConformanceOrVariance(
case
RPC_FC_USHORT
:
data
=
*
(
USHORT
*
)
ptr
;
break
;
case
RPC_FC_CHAR
:
case
RPC_FC_SMALL
:
data
=
*
(
CHAR
*
)
ptr
;
break
;
case
RPC_FC_BYTE
:
case
RPC_FC_USMALL
:
data
=
*
(
UCHAR
*
)
ptr
;
break
;
...
...
@@ -479,6 +481,18 @@ done_conf_grab:
case
RPC_FC_DEREFERENCE
:
/* already handled */
break
;
case
RPC_FC_ADD_1
:
*
pCount
=
data
+
1
;
break
;
case
RPC_FC_SUB_1
:
*
pCount
=
data
-
1
;
break
;
case
RPC_FC_MULT_2
:
*
pCount
=
data
*
2
;
break
;
case
RPC_FC_DIV_2
:
*
pCount
=
data
/
2
;
break
;
default:
FIXME
(
"unknown conformance op %d
\n
"
,
pFormat
[
1
]);
goto
finish_conf
;
...
...
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