Commit Graph

4113 Commits

Author SHA1 Message Date
Biswapriyo Nath
8234d921e2 headers: Add wrappers and ioctls for the ideal send backlog in ws2tcpip.h
Required for
55c241902d/sdk/core/azure-core/src/http/curl/curl.cpp (L192)

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-27 22:27:02 +08:00
Biswapriyo Nath
7c9cfe6708 headers: Add new symbols in rpcndr.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-17 22:26:18 +08:00
Biswapriyo Nath
092f9fce12 headers: Rename reserved members in MIDL_SYNTAX_INFO in rpcndr.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-17 22:26:18 +08:00
Biswapriyo Nath
493ede3dfc headers: Rename reserved members in MIDL_STUB_DESC in rpcndr.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-17 22:26:18 +08:00
Biswapriyo Nath
90abf784ac headers: Add new members in MIDL_STUB_MESSAGE in rpcndr.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-16 17:02:07 +08:00
Biswapriyo Nath
41d29b8771 headers: Bump header version in rpcndr.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-16 17:02:07 +08:00
Biswapriyo Nath
9ea1eb4a62 headers: Add new macros for targeted platforms in rpcndr.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-16 17:02:07 +08:00
Pali Rohár
0988e3267d headers: Unified declaration of __argc, __argv, __wargv, _environ, _wenviron, _pgmptr, _wpgmptr, _osplatform, _osver, _winver, _winmajor, _winminor
Declare __argc, __argv, __wargv, _pgmptr, _wpgmptr via corresponding
__p_func() function as now it is provided by every CRT import library
(either directly or manually by mingw-w64 code) which also provides that
symbol.

Declare _environ and _wenviron based on architecture. On i386 and x64 in
msvcr*, and in UCRT on all architectures, it is always defined via
__p__environ() and __p__wenviron() functions which are provided by every
CRT import library (wide variant since VC20+). On arm32 and arm64 in
msvcrt, they are via _get_environ() and _get_wenviron() functions.

_osplatform, _osver, _winver, _winmajor, _winminor are declared as global
variables directly. They are available since the first crtdll.dll library
up to the msvcr80.dll (both i386 and x64). All these variables were removed
in Visual Studio 2008, together with corresponding __p_func fuctions. So
there is no reason to define them via functions.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:29 +03:00
Pali Rohár
be7a37d8ba crt: Provide __sys_errlist() and __sys_nerr() by every msvcrt import library
Global variable _sys_nerr is present in every CRT library except UCRT.
Function __sys_nerr() is present since msvcr80.dll and returns pointer to
the global variable _sys_nerr. This function is not present in any
msvcrt.dll library version, but is present in UCRT library.

Same applies for global array _sys_errlist[] and function __sys_errlist()
which returns pointer to the first member of __sys_errlist[] array.

For all pre-msvcr80 CRT import libraries provides mingw-w64 functions
__sys_errlist() and __sys_nerr(). And change stdlib.h header file to
define _sys_nerr and _sys_errlist via __sys_errlist() and __sys_nerr()
functions. With this change, definitions will be compatible for all CRT
versions (crtdll, msvcrt, msvcr80+, UCRT).

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:25 +03:00
Pali Rohár
c17eff0e30 crt: Provide __p__mbcasemap() function and use it for _mbcasemap
_mbcasemap[] global array is available since Microsoft Visual C++ 5.0 SP1
version of msvcrt.dll for all architectures, and then also in new msvcr*
DLL libraries, and also in UCRT.

__p__mbcasemap() function is available in msvcrt.dll only for i386
architecture since Microsoft Visual C++ 5.0 SP1. For new msvcr* DLL
libraries, it is available also for non-i386 architecture.

So provide fallback implementation of __p__mbcasemap() function in non-i386
msvcrt.dll import libraries. And define _mbcasemap in header file via
__p__mbcasemap() function.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:25 +03:00
Pali Rohár
77aa7278c6 crt: Fix _mbctype definition to be compatible with UCRT
Global variable _mbctype[] is not available in UCRT and msvcrt10.dll. UCRT
instead provides __p__mbctype() function which returns pointer to the first
_mbctype array member. msvcrt10.dll does not have any replacement.

Function __p__mbctype() is present also in all msvcrt VC versions starting
from VC20 for all architectures. In OS system version of msvcrt.dll, this
function is present only for i386 architecture.

Therefore function __p__mbctype() is not present in: crtdll.dll,
msvcrt10.dll and x64, arm32 and arm64 versions of msvcrt.dll.

So for import libraries crtdll and x64, arm32 and arm64 versions of msvcrt
provides fallback implementation of __p__mbctype() function via _mbctype[].

Then change mbctype.h include file to define _mbctype via function call
__p__mbctype(). This change allows to use _mbctype with all CRT libraries,
including UCRT, except msvcrt10 (which does not have neither _mbctype[],
nor __p__mbctype()).

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:24 +03:00
Pali Rohár
d1155764a0 headers: Fix _wctype declaration in header files
_wctype is a global variable exported from CRT library and therefore has to
be always accessed by the import symbol via __MINGW_IMP_SYMBOL(_wctype).

There is no CRT function which could return pointer to this variable.

_wctype variable is present since msvcr70.dll and also since Windows Server
2003 version of msvcrt.dll. It is present also in UCRT. For older versions
there is no fallback or emulation.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:24 +03:00
Pali Rohár
387aaa6f08 crt: Fix definition for _pwctype to be available also for UCRT
Global variable _pwctype is not available in UCRT. Instead UCRT has only
__pwctype_func() function which returns value of _pwctype variable.

Function __pwctype_func() is available also in msvcrt since VC70. For
previous i386 msvcrt versions there is a __p__pwctype() function which
returns pointer to the _pwctype variable.

Like for _pctype changes, add fallback versions of __pwctype_func() and
__p__pwctype() functions suitable for older CRT versions. And change
definition of _pwctype in header file from the global variable to macro
which calls __pwctype_func() function.

This change allows to use _pwctype with all CRT libraries, including UCRT.

Fix also type of _pwctype. In msvc its type is wctype_t and not unsigned
short. Note that wctype_t is just typedef for unsigned short, so this
should be just a cosmetic change to align with msvc.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:24 +03:00
Pali Rohár
f00d6dbc9a crt: Provide __p__pctype and __pctype_func symbols for every import CRT library
__pctype_func is available in msvcrt since VC70. __p__pctype is available
in i386 msvcrt version since VC20. _pctype is available in all versions
except in UCRT.

Define fallback __pctype_func() function implementation via __p__pctype()
function. And define __p__pctype() via _pctype variable.

With this change every CRT import library provides __pctype_func()
function. So remove #ifdefs for _pctype declarations in header files and
unifies _pctype definitions between different CRT libraries.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:23 +03:00
Pali Rohár
47d0ec07cf headers: Fix _pctype, _pwctype, _wctype and __pctype_func() declarations
Global variables _pctype, _pwctype, _wctype and function __pctype_func() are constant.

See:
* https://learn.microsoft.com/en-us/cpp/c-runtime-library/pctype-pwctype-wctype-mbctype-mbcasemap
* https://learn.microsoft.com/en-us/cpp/c-runtime-library/pctype-func

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:23 +03:00
Pali Rohár
b805d02895 crt: Improve ___mb_cur_max_func() function support
Provide fallback ___mb_cur_max_func() implementation via __p___mb_cur_max()
function. __p___mb_cur_max() is available since VC20. For earlier version
import libraries provide fallback __p___mb_cur_max() implementation via
global variable __mb_cur_max.

With this change every CRT import library provides ___mb_cur_max_func()
function. So remove #ifdefs for __mb_cur_max declarations in header files.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:23 +03:00
Pali Rohár
2072dbefde crt: Provide __iob_func function by every msvcrt import library
Both functions __iob_func() and __p__iob() returns same constant value -
pointer to the first member of _iob[] array. Symbol for _iob[] array is
present in every msvcrt DLL library.

Function __p__iob() is provided by every i386 version of msvcrt DLL library
since VC20. But it is not available in any non-i386 version. Function
__iob_func() is provided by every version of msvcrt DLL library since VC70
for every architecture. __iob_func() is provided also by every X64 and ARM
versions of OS system version msvcrt.dll.

Note that UCRT does not provide neither __iob_func(), nor __p__iob()
function.

So for all msvcrt versions before VC70 define __iob_func symbol as an alias
to __p__iob symbol. And for versions before VC20 provide custom mingw-w64
implementation of __iob_func() function which returns pointer to the first
member of _iob[] array.

This change allows to remove #ifdef around _iob declaration in stdio.h and
wchar.h header files as now the __iob_func() function is provided by every
version of msvcrt import library.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-15 00:07:22 +03:00
Biswapriyo Nath
f5270c6d3f headers: Add new name in WHV_PROCESSOR_VENDOR in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-12 22:56:34 +08:00
Biswapriyo Nath
f7f39fb855 headers: Add aarch64 members in WHV_EXTENDED_VM_EXITS in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-12 22:56:34 +08:00
Biswapriyo Nath
51853d7d33 headers: Add aarch64 members in WHV_CAPABILITY_FEATURES in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-12 22:56:34 +08:00
Biswapriyo Nath
5fb9146b88 headers: Add new names in WHV_CAPABILITY_CODE in winhvplatformdefs.h
Existent enumerators have been updated a little to prevent a trailing comma.

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-12 22:52:56 +08:00
Biswapriyo Nath
4a2b747dc3 headers: Add new members in WHV_REGISTER_VALUE in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-12 22:13:19 +08:00
LIU Hao
74875157b0 crt/math: Reveal more names
This commit reveals names in three categories:

1) Names that start with an underscore and a letter in uppercase are reserved
   for implementations. These can be revealed even with strict standard
   conformance.

2) Names that start with an underscore and a letter in lowercase are reserved
   for implementations in file scopes (i.e. they are not eligible for macros).
   These can be revealed even with strict standard conformance.

3) Some names reference POSIX functions. These are revealed when a POSIX, GNU
   or BSD feature test macro is defined.

Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-12 22:13:18 +08:00
Biswapriyo Nath
55ced9c1c9 headers: Add aarch64 condition in WHV_DELIVERABILITY_NOTIFICATIONS_REGISTER in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-10 17:17:06 +08:00
Biswapriyo Nath
ef7c648a02 headers: Add new names in WHV_X64_PENDING_EVENT_TYPE in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-10 17:17:03 +08:00
Biswapriyo Nath
95a72435e5 headers: Add WHV_REGISTER_NAME for aarch64 in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-10 17:17:01 +08:00
Biswapriyo Nath
56f2a58850 headers: Add new names in WHV_REGISTER_NAME in winhvplatformdefs.h
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-10 17:16:55 +08:00
Martin Storsjö
f97814b960 headers: Add new constants for IsProcessorFeaturePresent from WinSDK 10.0.26100
Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-06 10:47:10 +03:00
Biswapriyo Nath
f977e1c382 headers: Add missing NTDDI_WIN10* defines
Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-05 21:55:44 +08:00
Martin Storsjö
386fc6b04a headers: Fix the order of asm() and attribute((deprecated())) in time.h
This fixes build errors with GCC, after
e5ac8c5509cd729b97065733cf4b0df0ec732797; GCC doesn't accept
__asm__(), expanded from __MINGW_ASM_CALL(), after
__attribute__((deprecated())), while Clang accepts both orders.

By default, __MINGW_ATTRIB_DEPRECATED_SEC_WARN doesn't expand
to anything, but if built with defines that makes this expand to
a deprecation attribute, the build would fail with GCC.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-06-05 10:44:42 +03:00
Biswapriyo Nath
4ad55c4393 headers: Add new symbols in hyperv compute headers
From 323e43aa70b0a3d7e8b1b42650b5a769337ab679 Mon Sep 17 00:00:00 2001
From: Biswapriyo Nath <nathbappai@gmail.com>
Date: Mon, 3 Jun 2024 06:40:09 +0000
Subject: [PATCH 1/2] headers: Add new symbols in hyperv compute headers

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-06-04 22:07:12 +08:00
Pali Rohár
4f9685299a headers: Fix *stat* macros in _mingw_stat64.h header file
All CRT import libraries provides UCRT-compatible *stat* symbols since
commit b463875615.

So define all stat* macros consistently with definitions of aliases in def
files based on UCRT. There is no need to have ifdef for non-UCRT version
anymore.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-05-30 15:52:48 +03:00
Jonathan Yong
dc42231f03 _mingw_mac.h: bump to 13.x
Signed-off-by: Jonathan Yong <10walls@gmail.com>
2024-05-29 02:40:37 +00:00
Jonathan Yong
dbda83ce39 DFP: fix typos and errors caught by GCC 15
Signed-off-by: Jonathan Yong <10walls@gmail.com>
2024-05-18 05:23:24 +00:00
Martin Storsjö
05598db991 headers: Use reserved name for printf/scanf format attribute types
Signed-off-by: Martin Storsjö <martin@martin.st>
2024-05-17 10:19:00 +03:00
Martin Storsjö
3599f2fca7 headers: Don't use the ms_printf/scanf and gnu_printf/scanf format attributes with clang
Clang doesn't support the ms_printf/scanf and gnu_printf/scanf
format attributes, only plain "printf" and "scanf".

We already expand e.g. __MINGW_PRINTF_FORMAT (which differs depending
on __USE_MINGW_ANSI_STDIO) into plain "printf" for Clang, since
015e637b4b. However, a number
of functions explicitly declared either gnu or ms style formats,
which caused these functions to not get any format string diagnostics.

This fixes https://github.com/llvm/llvm-project/issues/68995,
which reported that no warnings are produced for mismatched
printf/scanf format strings, when compiling with Clang, with
a toolchain targeting msvcrt (i.e. in practice using
__USE_MINGW_ANSI_STDIO enabled).

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-05-17 10:18:57 +03:00
Martin Storsjö
0e7940f228 headers: Use the __MINGW_(MS|GNU)_(PRINTF|SCANF) macros
Prefer declaring these attributes with such macros, rather than
spelling out the full attribute.

These macros were added in 73e50d0577
in 2013, but haven't been used in mingw-w64 headers since (although
they may have been used in user code).

These macros, which expand to the full attribute, differ slightly
from the other preexisting macros (which are used quite widely)
like __MINGW_PRINTF_FORMAT, which expand only to the type string
"gnu_printf", "ms_printf" or "printf".

However as we do have these existing macros in this form, for
declaring a specific form of these format attributes, take them into
use where applicable.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-05-17 10:18:54 +03:00
LIU Hao
837c48d496 include/minwinbase: Fix enumerators of FILE_INFO_BY_HANDLE_CLASS
Closes https://github.com/mingw-w64/mingw-w64/issues/48

Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-05-17 09:17:14 +08:00
Jacek Caban
f10e1f17d0 headers: Update imported headers to current Wine version.
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
2024-05-16 01:44:10 +02:00
Martin Storsjö
e5ac8c5509 headers: Use asm() for redirecting time functions, instead of inline functions
Prior to 1652e9241b, the time.h
inline functions always were static. Due to reexporting such
symbols in C++20 modules (for the C++23 std module), the reexported
symbols must not be static, so the inline functions were changed
from static inline to __mingw_ovr, which practically is static
inline in C mode, but regular inline in C++ mode.

By using regular inline in C++ mode, each use of the functions
can (but doesn't need to) emit an external symbol for the
inline function, and the callers may either call that function
or inline the body of the function.

This can have two potential issues; if different translation units
are configured differently (with the _USE_32BIT_TIME_T define),
but both use the same external symbol for it, the linker will only
keep one of them (as they're both inline, and supposed to be the
same). In practice, this is rare for _USE_32BIT_TIME_T though.

Secondly, such an external symbol may conflict with the actual
import library. Such a case was reported at
https://github.com/mstorsjo/llvm-mingw/issues/427.

(Practically, the issue there was that some built object files
defined an external "_time" symbol, i.e. regular "time" with i386
cdecl underscore prefix, from the non-static inline functions. The
object also files reference _time32 with dllimport, which via the
weak aliases produced by llvm-dlltool end up pulling in the
__imp__time symbol, which also brings in a conflicting "_time" symbol.)

In short - inline functions can be problematic. Where possible,
it's less problematic to use asm(), via __MINGW_ASM_CALL(), to
redirect calls directly towards the right function.

This has a slight drawback, that this ends up calling the thunks
(as the declarations lack dllimport), while we previously could
inline the call directly to a dllimported function (avoiding the
thunk, fetching the target address via the __imp_ prefixed symbol).

We could, easily, add the dllimport attributes on these declarations,
but that triggers a GCC bug for how those symbol names are mangled
on i386, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114984. (The
bug seems to be noted and mentioned as early as 2007, in
https://sourceware.org/pipermail/cygwin/2007-February/154845.html,
but it doesn't seem to have been fixed since.)

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-05-10 00:37:31 +03:00
Jacek Caban
19cf5d171f include: Update d3dx9mesh.h to current Wine version.
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
2024-05-04 12:49:41 +02:00
Biswapriyo Nath
8fdf7c9b5c headers: Add tcpxcv.h
Fixes https://github.com/mingw-w64/mingw-w64/issues/46

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-04-26 10:16:09 +08:00
Martin Storsjö
8c13b28ace headers: Stop using the __mingw_static_ovr macro
We should prefer using a macro which doesn't declare functions
as static inline in C++ mode.

This macro was added in bc6a874889,
without an explanation of why it was added.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-04-25 23:52:41 +03:00
Martin Storsjö
1652e9241b headers: Use __mingw_ovr instead of explicitly static inline
When building the C++23 std modules, at least with libc++, the
C++ module needs to reexport a number of standard C functions.

The regular libc++ headers (the ones used even if not using
C++ modules) do this, essentially:

    namespace std {
        using ::ctime;
    }

Thus reexporting the regular C function ctime within the std
namespace.

When building libc++ as a module, this function gets emitted as
part of the C++ std module, like this:

    export namespace std {
        using std::ctime;
    }

This tries to export the function as part of the C++ module. In the
case of our inline functions, this errors out if the inline functions
are static inline:

    <prefix>/share/libc++/v1/std/ctime.inc:20:14: error: using declaration referring to 'ctime' with internal linkage cannot be exported
       20 |   using std::ctime;
          |              ^
    <prefix>/x86_64-w64-mingw32/include/time.h:267:29: note: target of using declaration
      267 | static __inline char *__CRTDECL ctime(const time_t *_Time) { return _ctime64(_Time); }
          |                                 ^

Therefore, prefer using the __mingw_ovr macro for these inline
declarations. This macro expands to regular plain (non-static)
inline in C++ mode, while it still expands to static inline in C mode.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-04-25 23:52:36 +03:00
Martin Storsjö
847164bcf5 headers: Don't redefine the __mingw_ovr define in swprintf.inl and wchar.h
This redefining of the macro was added in
824ceb1d12, without an explanation
of why that was done.

If we really do need to use a different inline declaration for
these functions, we should use a different macro, so we don't
alter the meaning of the __mingw_ovr define after including
swprintf.inl or wchar.h.

This practically has the effect, that these inlines are declared
as regular "inline" instead of "static __inline__" when built
in C++ mode with a GCC compatible compiler. This matches how
the __mingw_ovr macro is defined and used for many other inline
functions.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-04-25 23:52:35 +03:00
Martin Storsjö
30c0b623db headers: Remove UCRT inline fwprintf and _snwprintf
We already have non-inline versions of these functions; use the
non-inline version consistently, to avoid potential cases of
inconsistency.

Signed-off-by: Martin Storsjö <martin@martin.st>
2024-04-25 23:52:35 +03:00
LIU Hao
31dcedc3ca headers/pathcch: Add definition of PATHCCH_OPTIONS
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-04-09 22:17:55 +08:00
Pali Rohár
8f79d69dcb headers: stdio.h: Remove inline variant of UCRT _scprintf, _snprintf and _snscanf functions
Signed-off-by: LIU Hao <lh_mouse@126.com>
2024-04-08 22:11:51 +08:00
Jacek Caban
257321cea6 headers: Update to current Wine version.
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
2024-04-05 11:28:56 +02:00
Biswapriyo Nath
e54be04570 include: Add dyngraph.idl in strmif.idl
Remove duplicate symbols also.

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
2024-03-18 22:26:48 +01:00