reactos/reactos/tools
Eric Kohl a591ac9fa5 Sync to wine-0.9.61:
- Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: Stop looping in check_remoting_args when a context_handle or wire_marshal type is found as they are in effect fundamental types.

- Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: Check that fields in structures and unions referenced by non-local functions can be marshalled and that their attributes are consistent.


-Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: The implicit_handle attribute is allowed with a handle explicitly specified in the function parameters. In that case, that handle is used instead of the implicit handle. Fix the check for the explicit_handle attribute being specified without a handle being specified in the function parameters, even though issuing an error is wrong. (Thanks to Marcus Meissner & Coverity for spotting that the check didn't do what it was supposed to do.)

- Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: Automatically add "handle_t IDL_handle" parameter to functions with no explicit handle specified whose containing interface has the explicit_handle attribute.

- Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: Issue an error instead of crashing for dividing by zero in a constant expression.

- Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: Add support for "->" and "." operators in expressions.

- Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: Add support for arrays in expressions.

- Rob Shearman <rob@codeweavers.com> Sun, 20 Apr 2008
widl: Add support for '%' operator in expressions.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Fix operator precedence in expressions.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Require a constant expression for case statements.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Add support for comparison, exclusive or, logical not and positive operators in expressions.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Remove EXPR_MEMBERPTR and implement it using EXPR_PPTR and EXPR_MEMBER instead.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Don't free input_name in pop_import as we keep pointers to it in the var_t type now.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Pass the actual type into check_remoting_fields and check_field_common instead of the type name.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Check that expressions resolve so that expressions in generated code will compile. Also check that expressions return the correct type for the attribute.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Move expression functions to a new file, expr.c.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Use expr_resolve_type to get the type of the identifier in write_conf_or_var_desc. Remove the conversion of pointer types into base types as this was only needed due to lack of proper type resolving.

- Rob Shearman <rob@codeweavers.com> Tue, 22 Apr 2008
widl: Remove duplicated code in the form of the write_struct_expr function by enhancing write_expr to allow toplevel identifiers to be prefixed by a string, if specified.

- Rob Shearman <rob@codeweavers.com> Thu, 24 Apr 2008
widl: Implement lcid property on library declarations.

- Rob Shearman <rob@codeweavers.com> Thu, 24 Apr 2008
widl: Construct the pointer chain while parsing pointers, rather than storing a ptr_level. This method is more flexible and somewhat simpler.

- Rob Shearman <rob@codeweavers.com> Thu, 24 Apr 2008
widl: Allow NULL to be used in expressions.

- Rob Shearman <rob@codeweavers.com> Thu, 24 Apr 2008
widl: Create a list of statements in the whole IDL file, instead of just a list of interfaces.

- Rob Shearman <rob@codeweavers.com> Thu, 24 Apr 2008
widl: Add typedef statements to the statement lists.

- Rob Shearman <rob@codeweavers.com> Fri, 25 Apr 2008
widl: Consolidate most of the inner loop of reg_typedefs into set_type.

- Rob Shearman <rob@codeweavers.com> Fri, 25 Apr 2008
widl: Rename pident to declarator and parse the array declarations as part of declarators. This allows arrays to be used in typedefs and const statements.

- Rob Shearman <rob@codeweavers.com> Fri, 25 Apr 2008
widl: Make the rules for parsing fields in structures, encapsulated unions and non-encapsulated unions more strict. Move the rules in fields that handle empty union cases into separate union rules so that they can't erroneously be accepted for structures or other types of unions.

- Rob Shearman <rob@codeweavers.com> Fri, 25 Apr 2008
widl: Add support for declaring multiple fields of a structure in one statement.

- Rob Shearman <rob@codeweavers.com> Fri, 25 Apr 2008
widl: Add support for string literals and wide-string literals in expressions.

- Rob Shearman <rob@codeweavers.com> Fri, 25 Apr 2008
widl: Create a statement object for import statements. Move the writing of include directives into the generated header into header.c.

- Rob Shearman <rob@codeweavers.com> Fri, 25 Apr 2008
widl: Move the func_declarator rule entirely into direct_declarator.

- Rob Shearman <rob@codeweavers.com> Sat, 26 Apr 2008
widl: Add typedefs to typelibs which have the public or uuid attributes, not any other attribute.

- Rob Shearman <rob@codeweavers.com> Sat, 26 Apr 2008
widl: Support hex digits that use an uppercase 0X prefix.

- Rob Shearman <rob@codeweavers.com> Sun, 27 Apr 2008
widl: Accept integer constant suffixes in the lexer.

- Rob Shearman <rob@codeweavers.com> Tue, 29 Apr 2008
widl: Keep const attributes applied to pointers when writing out the type. Use an attribute to store the const qualifier for the pointer and type. Allow multiple type-qualifiers to be applied to a type by adding a declaration-specifier rule that encompasses type-qualifiers and types.

- Rob Shearman <rob@codeweavers.com> Tue, 29 Apr 2008
widl: Add support for "inline" on function definitions. Fix applying calling convention to function type.

- Rob Shearman <rob@codeweavers.com> Tue, 29 Apr 2008
widl: Make constdef and externdef take a declarator instead of an ident so that functions and arrays can be defined using the statements.

- Rob Shearman <rob@codeweavers.com> Tue, 29 Apr 2008
widl: Allow pointer attributes to be applied to function pointers.

- Rob Shearman <rob@codeweavers.com> Tue, 29 Apr 2008
widl: callback, code, comm_status and in_line are attribute names, not keywords.

- Rob Shearman <rob@codeweavers.com> Wed, 30 Apr 2008
widl: Prepare for supporting storage classes in declaration statements. Return a decl_spec_t structure from decl_spec rules so that the storage
class and type qualifiers can both be returned.

- Rob Shearman <rob@codeweavers.com> Wed, 30 Apr 2008
widl: Add the parsing of storage classes into declaration-specifiers. Support the static and register keywords. This consolidates externdef and constdef rules into one declaration rule.

- Rob Shearman <rob@codeweavers.com> Thu, 1 May 2008
widl: Consolidate writing of COM and dispatch interfaces into one function to remove duplicated code. Split up the writing into start and end to eventually support the style MIDL uses where it writes declared types, etc. between the start and end of the interface. Make internal header functions take the file pointer to print to. Don't write interface IDs for non-object interfaces and always write handle declarations even if the interface has no methods, like MIDL does.

- Gerald Pfeifer <gerald@pfeifer.com> Fri, 2 May 2008
widl: Fix syntax to also work with older versions of bison.

svn path=/trunk/; revision=37313
2008-11-12 19:26:25 +00:00
..
buildno Daniel Verkamp (daniel.verkamp@gmail.com): 2008-07-27 13:34:53 +00:00
cabman - Add a "host" attribute to the project's <include> and <define> tags to make it possible to define global includes/defines for host components 2008-10-26 18:03:06 +00:00
cdmake Use a .rbuild file instead of a .make file to describe cdmake compilation 2008-03-07 08:15:23 +00:00
create_nls Delete all Trailing spaces in code. 2007-10-19 23:21:45 +00:00
gendib Fix BitBlt MERGEPAINT operation command. 2008-11-09 18:38:02 +00:00
mkhive - Add a "host" attribute to the project's <include> and <define> tags to make it possible to define global includes/defines for host components 2008-10-26 18:03:06 +00:00
ms2ps
nci KJK::Hyperion is proud to present "dllimport purity", another landmark commit that you should really build only after a "clean" 2008-11-04 18:16:58 +00:00
ofw_interface t's a bit embarrasing that some of this was undone until recently, but we now 2008-01-06 14:52:00 +00:00
pipetools Delete all Trailing spaces in code. 2007-10-19 23:21:45 +00:00
rbuild Hopefully, the definitive spec files commit. Dedicated to Samuel Serapión, who reported issues with my previous commits. 2008-11-10 02:31:24 +00:00
regtests2xml Delete all Trailing spaces in code. 2007-10-19 23:21:45 +00:00
rgenstat - A better freebsd/macosx fix. 2008-03-10 20:04:46 +00:00
unicode - Update unicode lib to Wine-20081105 (~1.1.7 release). 2008-11-05 14:35:45 +00:00
widl Sync to wine-0.9.61: 2008-11-12 19:26:25 +00:00
winebuild - Fix build. 2008-11-05 15:25:19 +00:00
wmc - Update wmc to Wine-20081105 (mostly typo fixes). 2008-11-05 15:31:34 +00:00
wpp - Update wpp to Wine-20081105. 2008-11-05 14:47:55 +00:00
wrc - Sync WRC to Wine-20081105 (a few nice bugfixes). 2008-11-05 16:16:19 +00:00
bin2c.c Install freeloader installer. 2005-07-12 15:04:17 +00:00
bin2c.mak On *nix systems, support absolute paths in ROS_INTERMEDIATE and ROS_OUTPUT 2007-11-07 11:29:57 +00:00
dumpstab.c utility to dump stab info out of an executable 2005-11-25 22:19:05 +00:00
mkconfig.c
pefixup.c iterate the number of sections, not the number of directory entries 2008-05-20 14:20:54 +00:00
pefixup.mak On *nix systems, support absolute paths in ROS_INTERMEDIATE and ROS_OUTPUT 2007-11-07 11:29:57 +00:00
raddr2line.c Add a \n so the output under linux looks correct. Every other printf had a \n, no idea why this one didn't. 2006-07-07 16:23:44 +00:00
raddr2line.mak On *nix systems, support absolute paths in ROS_INTERMEDIATE and ROS_OUTPUT 2007-11-07 11:29:57 +00:00
rsym.c In rsym, allow a stabs entry to be longer than 256 characters, so that ROS may be compiled with -feliminate-unused-debug-symbols which reduces the needed disk space a lot. 2008-08-01 21:48:54 +00:00
rsym.h merge 36224 and 36910 from amd64 branch 2008-10-24 22:13:45 +00:00
rsym.mak merge 36223 from amd64-branch 2008-10-24 21:32:48 +00:00
rsym_common.c
ssprintf.cpp Change, simplify and document the conditions for the include files. 2008-03-14 23:55:32 +00:00
ssprintf.h Fix quirks for building PPC on windows. 2007-10-15 03:56:58 +00:00
stubgen.c Delete all Trailing spaces in code. 2007-10-19 23:21:45 +00:00
tools.mak Replace some .mak files by .rbuild files 2008-03-07 13:00:41 +00:00
tools.rbuild delete sysreg, it is obsolete now 2008-09-02 12:57:26 +00:00
xml.cpp Bug 3830: Spanish netshell update and more by Javier Remacha 2008-11-04 21:28:06 +00:00
xml.h move xml.h/cpp and ssprintf.h/cpp up a directory, make both rbuild and buildno use these same files 2005-11-27 23:04:51 +00:00