diff fuhtark_test/include/winapi/persist.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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fuhtark_test/include/winapi/persist.h	Wed Nov 26 21:36:48 2025 +0700
@@ -0,0 +1,57 @@
+/**
+ * This file has no copyright assigned and is placed in the Public Domain.
+ * This file is part of the w64 mingw-runtime package.
+ * No warranty is given; refer to the file DISCLAIMER within this package.
+ */
+#ifndef PERSIST_H
+#define PERSIST_H
+
+#define DBPROPFLAGS_PERSIST 0x2000
+
+#define DBPROPVAL_PERSIST_ADTG 0
+#define DBPROPVAL_PERSIST_XML 1
+#define DBPROP_PersistFormat 2
+#define DBPROP_PersistSchema 3
+#define DBPROP_HCHAPTER 4
+#define DBPROP_MAINTAINPROPS 5
+#define DBPROP_Unicode 6
+#define DBPROP_INTERLEAVEDROWS 8
+
+extern const CLSID CLSID_MSPersist
+#if (defined DBINITCONSTANTS) | (defined DSINITCONSTANTS)
+= { 0x7c07e0d0,0x4418,0x11d2,{ 0x92,0x12,0x0,0xc0,0x4f,0xbb,0xbf,0xb3 } }
+#endif
+;
+
+extern const GUID DBPROPSET_PERSIST
+#if (defined DBINITCONSTANTS) | (defined DSINITCONSTANTS)
+= { 0x4d7839a0,0x5b8e,0x11d1,{ 0xa6,0xb3,0x0,0xa0,0xc9,0x13,0x8c,0x66 } };
+#endif
+;
+
+#define MS_PERSIST_PROGID "MSPersist"
+
+extern const char *PROGID_MSPersist
+#if (defined DBINITCONSTANTS) | (defined DSINITCONSTANTS)
+= MS_PERSIST_PROGID
+#endif
+;
+
+extern const unsigned short *PROGID_MSPersist_W
+#if (defined DBINITCONSTANTS) | (defined DSINITCONSTANTS)
+= L"MSPersist"
+#endif
+;
+
+extern const char *PROGID_MSPersist_Version
+#if (defined DBINITCONSTANTS) | (defined DSINITCONSTANTS)
+= MS_PERSIST_PROGID ".1"
+#endif
+;
+
+extern const unsigned short *PROGID_MSPersist_Version_W
+#if (defined DBINITCONSTANTS) | (defined DSINITCONSTANTS)
+= L"MSPersist.1"
+#endif
+;
+#endif