comparison fuhtark_test/include/winapi/isguids.h @ 1500:91c8c3b7cbf0

add: futhark tests for generating vulkan api
author sam <sam@basx.dev>
date Wed, 26 Nov 2025 21:36:48 +0700
parents
children
comparison
equal deleted inserted replaced
1499:1f58458b7ef7 1500:91c8c3b7cbf0
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
6 #ifndef _ISGUIDS_H_
7 #define _ISGUIDS_H_
8
9 #ifdef UNICODE
10 #define IID_IUniformResourceLocator IID_IUniformResourceLocatorW
11 #else
12 #define IID_IUniformResourceLocator IID_IUniformResourceLocatorA
13 #endif
14
15 DEFINE_GUID(CLSID_InternetShortcut,0xFBF23B40L,0xE3F0,0x101B,0x84,0x88,0x00,0xAA,0x00,0x3E,0x56,0xF8);
16 DEFINE_GUID(IID_IUniformResourceLocatorA,0xFBF23B80L,0xE3F0,0x101B,0x84,0x88,0x00,0xAA,0x00,0x3E,0x56,0xF8);
17 DEFINE_GUID(IID_IUniformResourceLocatorW,0xCABB0DA0L,0xDA57,0x11CF,0x99,0x74,0x00,0x20,0xAF,0xD7,0x97,0x62);
18
19 #endif