Module: wine Branch: refs/heads/master Commit: ac5a4393d57daaf84ae0155a4a1efcc0b6e2d2f0 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=ac5a4393d57daaf84ae0155a...
Author: Robert Shearman rob@codeweavers.com Date: Tue Jan 31 18:06:53 2006 +0100
widl: The stack/structure offset in correlation descriptors should be a short.
---
tools/widl/typegen.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c index 221a06c..2f96080 100644 --- a/tools/widl/typegen.c +++ b/tools/widl/typegen.c @@ -443,7 +443,7 @@ static size_t write_conf_or_var_desc(FIL correlation_type == RPC_FC_TOP_LEVEL_CONFORMANCE ? "parameter, " : "", param_type_string); print_file(file, 2, "0x%x, /* %s */\n", operator_type, operator_string); - print_file(file, 2, "0x%x, /* %soffset = %d */\n", + print_file(file, 2, "NdrShort(0x%x), /* %soffset = %d */\n", offset, correlation_type == RPC_FC_TOP_LEVEL_CONFORMANCE ? "x86 stack size / " : "", offset);