Skip to content

Commit

Permalink
Update 12 packages
Browse files Browse the repository at this point in the history
mingw-w64-i686-crt-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-i686-headers-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-i686-libmangle-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-i686-libwinpthread-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-i686-tools-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-i686-winpthreads-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-x86_64-crt-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-x86_64-headers-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-x86_64-libmangle-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-x86_64-libwinpthread-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-x86_64-tools-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)
mingw-w64-x86_64-winpthreads-git (12.0.0.r423.g8bcd5fc1a-1 -> 12.0.0.r446.ga2d19218d-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Dec 14, 2024
1 parent 6324c01 commit f253dee
Show file tree
Hide file tree
Showing 841 changed files with 1,488 additions and 704 deletions.
Binary file modified mingw32/bin/gendef.exe
Binary file not shown.
Binary file modified mingw32/bin/genidl.exe
Binary file not shown.
Binary file modified mingw32/bin/genpeimg.exe
Binary file not shown.
Binary file modified mingw32/bin/libwinpthread-1.dll
Binary file not shown.
Binary file modified mingw32/bin/widl.exe
Binary file not shown.
22 changes: 13 additions & 9 deletions mingw32/include/_mingw.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ limitations in handling dllimport attribute. */
# endif
#endif

#if !defined(__CRTDLL__) && __MSVCRT_VERSION__ == 0x00
#define __CRTDLL__
#endif

#if !defined(_UCRT) && ((__MSVCRT_VERSION__ >= 0x1400) || (__MSVCRT_VERSION__ >= 0xE00 && __MSVCRT_VERSION__ < 0x1000))
/* Allow both 0x1400 and 0xE00 to identify UCRT */
#define _UCRT
Expand Down Expand Up @@ -594,12 +598,12 @@ extern "C" {
void __cdecl __debugbreak(void);
__MINGW_INTRIN_INLINE void __cdecl __debugbreak(void)
{
#if defined(__i386__) || defined(__x86_64__)
#if defined(__aarch64__) || defined(__arm64ec__)
__asm__ __volatile__("brk #0xf000");
#elif defined(__i386__) || defined(__x86_64__)
__asm__ __volatile__("int {$}3":);
#elif defined(__arm__)
__asm__ __volatile__("udf #0xfe");
#elif defined(__aarch64__)
__asm__ __volatile__("brk #0xf000");
#else
__asm__ __volatile__("unimplemented");
#endif
Expand All @@ -615,14 +619,14 @@ __MINGW_INTRIN_INLINE void __cdecl __debugbreak(void)
void __cdecl __MINGW_ATTRIB_NORETURN __fastfail(unsigned int code);
__MINGW_INTRIN_INLINE void __cdecl __MINGW_ATTRIB_NORETURN __fastfail(unsigned int code)
{
#if defined(__i386__) || defined(__x86_64__)
#if defined(__aarch64__) || defined(__arm64ec__)
register unsigned int w0 __asm__("w0") = code;
__asm__ __volatile__("brk #0xf003"::"r"(w0));
#elif defined(__i386__) || defined(__x86_64__)
__asm__ __volatile__("int {$}0x29"::"c"(code));
#elif defined(__arm__)
register unsigned int r0 __asm__("r0") = code;
__asm__ __volatile__("udf #0xfb"::"r"(r0));
#elif defined(__aarch64__)
register unsigned int w0 __asm__("w0") = code;
__asm__ __volatile__("brk #0xf003"::"r"(w0));
#else
__asm__ __volatile__("unimplemented");
#endif
Expand All @@ -636,13 +640,13 @@ __MINGW_INTRIN_INLINE void __cdecl __MINGW_ATTRIB_NORETURN __fastfail(unsigned i
#define __MINGW_PREFETCH_IMPL 1
#endif
#if __MINGW_PREFETCH_IMPL == 1
#if defined(__arm__) || defined(__aarch64__)
#if defined(__arm__) || defined(__aarch64__) || defined(__arm64ec__)
void __cdecl __prefetch(const void *addr);
__MINGW_INTRIN_INLINE void __cdecl __prefetch(const void *addr)
{
#if defined(__arm__)
__asm__ __volatile__("pld [%0]"::"r"(addr));
#elif defined(__aarch64__)
#elif defined(__aarch64__) || defined(__arm64ec__)
__asm__ __volatile__("prfm pldl1keep, [%0]"::"r"(addr));
#endif
}
Expand Down
7 changes: 7 additions & 0 deletions mingw32/include/_mingw_mac.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@
# endif
#endif

#if defined(__arm64ec__) && !defined(_M_ARM64EC)
# define _M_ARM64EC 1
# ifndef _ARM64EC_
# define _ARM64EC_ 1
# endif
#endif

#ifndef _X86_
/* MS does not prefix symbols by underscores for 64-bit. */
# ifndef __MINGW_USE_UNDERSCORE_PREFIX
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/activation.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/activation.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/activation.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/activaut.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/activaut.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/activaut.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/activdbg.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/activdbg.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/activdbg.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/activdbg100.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/activdbg100.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/activdbg100.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/activprof.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/activprof.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/activprof.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/activscp.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/activscp.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/activscp.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/adhoc.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/adhoc.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/adhoc.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/alg.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/alg.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/alg.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/amstream.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/amstream.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/amstream.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/amvideo.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/amvideo.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/amvideo.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/asyncinfo.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/asyncinfo.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/asyncinfo.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/audioclient.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/audioclient.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/audioclient.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/audioendpoints.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/audioendpoints.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/audioendpoints.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/audiopolicy.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/audiopolicy.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/audiopolicy.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/austream.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/austream.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/austream.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/bdaiface.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/bdaiface.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/bdaiface.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/bits.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/bits.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/bits.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/bits1_5.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/bits1_5.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/bits1_5.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/bits2_0.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/bits2_0.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/bits2_0.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/bits2_5.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/bits2_5.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/bits2_5.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/bits3_0.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/bits3_0.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/bits3_0.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/bits5_0.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/bits5_0.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/bits5_0.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/comadmin.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/comadmin.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/comadmin.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/comcat.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/comcat.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/comcat.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/commoncontrols.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/commoncontrols.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/commoncontrols.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/control.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/control.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/control.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/credentialprovider.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/credentialprovider.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/credentialprovider.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/ctfutb.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/ctfutb.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/ctfutb.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/ctxtcall.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/ctxtcall.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/ctxtcall.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d10.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d10.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d10_1.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d10_1.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10_1.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d10effect.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d10effect.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10effect.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d10sdklayers.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d10sdklayers.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10sdklayers.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d10shader.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d10shader.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10shader.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d11.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d11.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d11_1.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d11_1.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_1.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d11_2.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d11_2.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_2.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d11_3.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d11_3.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_3.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d11_4.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d11_4.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_4.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d11on12.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d11on12.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11on12.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d11sdklayers.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d11sdklayers.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11sdklayers.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d12.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d12.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d12sdklayers.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d12sdklayers.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12sdklayers.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d12shader.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d12shader.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12shader.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3d12video.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3d12video.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12video.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/d3dcommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/d3dcommon.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/d3dcommon.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/dbgprop.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/dbgprop.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/dbgprop.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/dcommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/dcommon.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/dcommon.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/dcompanimation.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/dcompanimation.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/dcompanimation.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/ddstream.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/ddstream.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/ddstream.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/devicetopology.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/devicetopology.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/devicetopology.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/dimm.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/dimm.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/dimm.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/dinputd.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/dinputd.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/dinputd.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/directmanipulation.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*** Autogenerated by WIDL 9.20 from include/directmanipulation.idl - Do not edit ***/
/*** Autogenerated by WIDL 10.0-rc1 from include/directmanipulation.idl - Do not edit ***/

#ifdef _WIN32
#ifndef __REQUIRED_RPCNDR_H_VERSION__
Expand Down
Loading

0 comments on commit f253dee

Please sign in to comment.