-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCSQLiteExtensions.swift
More file actions
38 lines (32 loc) · 1009 Bytes
/
Copy pathCSQLiteExtensions.swift
File metadata and controls
38 lines (32 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
** 2025-05-30
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
******************************************************************************
**
** Functions to manage automatic database extension registration from Swift.
*/
#if false
@_exported import CSQLite
#endif
#if swift(<6.1) || CSQLITE_ENABLE_DECIMAL_EXTENSION
@_exported import CSQLiteDecimalExtension
#endif
#if swift(<6.1) || CSQLITE_ENABLE_IEEE754_EXTENSION
@_exported import CSQLiteIEEE754Extension
#endif
#if swift(<6.1) || CSQLITE_ENABLE_SERIES_EXTENSION
@_exported import CSQLiteSeriesExtension
#endif
#if swift(<6.1) || CSQLITE_ENABLE_SHA3_EXTENSION
@_exported import CSQLiteSHA3Extension
#endif
#if swift(<6.1) || CSQLITE_ENABLE_UUID_EXTENSION
@_exported import CSQLiteUUIDExtension
#endif