wine/tools/widl
Rémi Bernon 280932536f widl: Support fully qualified names in WinRT mode.
Interfaces are going to reference each other across namespaces, so this
implements a type lookup with the full name.

It supports the following idl syntax in WinRT mode:

    #ifdef __WIDL__
    #pragma winrt ns_prefix
    #endif

    import "wtypes.idl";

    namespace Windows {
        namespace Foo {
            [object]
            interface IFoo {}
        }
        namespace Bar {
            [object]
            interface IBar { HRESULT DoBar([in] Windows.Foo.IFoo *foo); }
        }
    }

That was previously failing to parse the Windows.Foo.IFoo part and to
lookup the corresponding type.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2020-09-07 21:07:00 +02:00
..
client.c widl: Output interface C names in method argument list. 2020-09-07 21:07:00 +02:00
expr.c widl: Don't store the default pointer type in the type_t structure. 2019-08-19 11:29:28 +02:00
expr.h widl: Long constants must be 32-bit on all platforms. 2010-03-26 11:42:28 +01:00
hash.c Use the official Microsoft definitions for Gaelic languages. 2013-06-19 20:09:51 +02:00
hash.h widl: Add support for writing 64-bit format typelibs. 2009-05-21 16:17:50 +02:00
header.c widl: Output interface C names in method argument list. 2020-09-07 21:07:00 +02:00
header.h widl: Output interface C names in method argument list. 2020-09-07 21:07:00 +02:00
Makefile.in widl: Also search the include dir relative to the binary path. 2020-01-30 11:33:13 +01:00
parser.h widl: Support fully qualified names in WinRT mode. 2020-09-07 21:07:00 +02:00
parser.l widl: Support fully qualified names in WinRT mode. 2020-09-07 21:07:00 +02:00
parser.y widl: Support fully qualified names in WinRT mode. 2020-09-07 21:07:00 +02:00
proxy.c widl: Output interface C names in method argument list. 2020-09-07 21:07:00 +02:00
register.c widl: Output a registry script for all interfaces written into the typelib. 2020-01-30 16:22:33 +01:00
server.c widl: Cast server functions to void *. 2020-04-09 21:04:04 +02:00
typegen.c widl: Use DECLSPEC_ALIGN in MSVC compatible way for return types too. 2020-05-18 11:54:40 +02:00
typegen.h widl: Generate correct size and alignment for all types. 2018-06-05 10:07:10 +02:00
typelib.c widl: Add the ARRAY_SIZE() macro. 2019-09-26 21:05:44 +02:00
typelib.h widl: Support generating multiple typelibs into the same resource file. 2018-10-16 13:48:36 +02:00
typelib_struct.h widl: Fix a variable name in a comment. 2019-09-02 20:46:58 +02:00
typetree.c widl: Generate a name for the encapsulated union type. 2019-08-21 20:03:52 +02:00
typetree.h widl: Generate a name for the encapsulated union type. 2019-08-21 20:03:52 +02:00
utils.c widl: Add strmake() helper. 2019-11-02 13:55:16 +01:00
utils.h widl: Add strmake() helper. 2019-11-02 13:55:16 +01:00
widl.c widl: Also search the include dir relative to the binary path. 2020-01-30 11:33:13 +01:00
widl.h widl: Always generate files for the target platform only. 2018-11-14 23:11:31 +01:00
widl.man.in widl: Add --sysroot and --nostdinc options. 2019-11-02 13:55:16 +01:00
widltypes.h widl: Output a registry script for all interfaces written into the typelib. 2020-01-30 16:22:33 +01:00
write_msft.c widl: If a variable doesn't have a name provide an autogenerated one. 2020-02-17 15:04:59 +01:00