mt-lang 0.3.30 → 0.3.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/std/c/miniaudio.mt CHANGED
@@ -192,7 +192,7 @@ struct ma_device_info_nativeDataFormats:
192
192
  format: ma_format
193
193
  channels: uint
194
194
  sampleRate: uint
195
- flags_: uint
195
+ flags: uint
196
196
 
197
197
  union ma_context_command__wasapi_data:
198
198
  quit: ma_context_command__wasapi_data_quit
@@ -446,7 +446,7 @@ struct ma_job_toc_breakup:
446
446
  refcount: uint
447
447
 
448
448
  struct ma_job_data_custom:
449
- proc_: fn(arg0: ptr[ma_job]) -> ma_result
449
+ proc: fn(arg0: ptr[ma_job]) -> ma_result
450
450
  data0: ulong
451
451
  data1: ulong
452
452
 
@@ -532,7 +532,7 @@ struct ma_job_data_resourceManager_loadDataBufferNode:
532
532
  pDataBufferNode: ptr[void]
533
533
  pFilePath: ptr[char]
534
534
  pFilePathW: ptr[int]
535
- flags_: uint
535
+ flags: uint
536
536
  pInitNotification: ptr[ma_async_notification]
537
537
  pDoneNotification: ptr[ma_async_notification]
538
538
  pInitFence: ptr[ma_fence]
@@ -1640,7 +1640,7 @@ struct ma_data_source_vtable:
1640
1640
  onGetCursor: fn(arg0: ptr[ma_data_source], arg1: ptr[ma_uint64]) -> ma_result
1641
1641
  onGetLength: fn(arg0: ptr[ma_data_source], arg1: ptr[ma_uint64]) -> ma_result
1642
1642
  onSetLooping: fn(arg0: ptr[ma_data_source], arg1: ma_bool32) -> ma_result
1643
- flags_: uint
1643
+ flags: uint
1644
1644
 
1645
1645
  type ma_data_source_get_next_proc = fn(arg0: ptr[ma_data_source]) -> ptr[ma_data_source]
1646
1646
 
@@ -1952,13 +1952,13 @@ flags ma_job_queue_flags: int
1952
1952
  MA_JOB_QUEUE_FLAG_NON_BLOCKING = 1
1953
1953
 
1954
1954
  struct ma_job_queue_config:
1955
- flags_: uint
1955
+ flags: uint
1956
1956
  capacity: uint
1957
1957
 
1958
1958
  external function ma_job_queue_config_init(flags_: uint, capacity: uint) -> ma_job_queue_config
1959
1959
 
1960
1960
  struct ma_job_queue:
1961
- flags_: uint
1961
+ flags: uint
1962
1962
  capacity: uint
1963
1963
  head: ulong
1964
1964
  tail: ulong
@@ -2030,7 +2030,7 @@ enum ma_device_notification_type: int
2030
2030
 
2031
2031
  struct ma_device_notification:
2032
2032
  pDevice: ptr[ma_device]
2033
- type_: ma_device_notification_type
2033
+ type: ma_device_notification_type
2034
2034
  data: ma_device_notification_data
2035
2035
 
2036
2036
  type ma_device_notification_proc = fn(arg0: const_ptr[ma_device_notification]) -> void
@@ -2250,7 +2250,7 @@ struct ma_context:
2250
2250
 
2251
2251
  struct ma_device:
2252
2252
  pContext: ptr[ma_context]
2253
- type_: ma_device_type
2253
+ type: ma_device_type
2254
2254
  sampleRate: uint
2255
2255
  state: ma_atomic_device_state
2256
2256
  onData: fn(arg0: ptr[ma_device], arg1: ptr[void], arg2: const_ptr[void], arg3: ma_uint32) -> void
@@ -2520,7 +2520,7 @@ struct ma_waveform_config:
2520
2520
  format: ma_format
2521
2521
  channels: uint
2522
2522
  sampleRate: uint
2523
- type_: ma_waveform_type
2523
+ type: ma_waveform_type
2524
2524
  amplitude: double
2525
2525
  frequency: double
2526
2526
 
@@ -2572,7 +2572,7 @@ flags ma_noise_type: int
2572
2572
  struct ma_noise_config:
2573
2573
  format: ma_format
2574
2574
  channels: uint
2575
- type_: ma_noise_type
2575
+ type: ma_noise_type
2576
2576
  seed: int
2577
2577
  amplitude: double
2578
2578
  duplicateChannels: uint
@@ -2627,7 +2627,7 @@ struct ma_resource_manager_data_source_config:
2627
2627
  rangeEndInPCMFrames: ulong
2628
2628
  loopPointBegInPCMFrames: ulong
2629
2629
  loopPointEndInPCMFrames: ulong
2630
- flags_: uint
2630
+ flags: uint
2631
2631
  isLooping: uint
2632
2632
 
2633
2633
  external function ma_resource_manager_data_source_config_init() -> ma_resource_manager_data_source_config
@@ -2639,7 +2639,7 @@ enum ma_resource_manager_data_supply_type: int
2639
2639
  ma_resource_manager_data_supply_type_decoded_paged = 3
2640
2640
 
2641
2641
  struct ma_resource_manager_data_supply:
2642
- type_: ma_resource_manager_data_supply_type
2642
+ type: ma_resource_manager_data_supply_type
2643
2643
  backend: ma_resource_manager_data_supply_backend
2644
2644
 
2645
2645
  struct ma_resource_manager_data_buffer_node:
@@ -2658,7 +2658,7 @@ struct ma_resource_manager_data_buffer:
2658
2658
  ds: ma_data_source_base
2659
2659
  pResourceManager: ptr[ma_resource_manager]
2660
2660
  pNode: ptr[ma_resource_manager_data_buffer_node]
2661
- flags_: uint
2661
+ flags: uint
2662
2662
  executionCounter: uint
2663
2663
  executionPointer: uint
2664
2664
  seekTargetInPCMFrames: ulong
@@ -2671,7 +2671,7 @@ struct ma_resource_manager_data_buffer:
2671
2671
  struct ma_resource_manager_data_stream:
2672
2672
  ds: ma_data_source_base
2673
2673
  pResourceManager: ptr[ma_resource_manager]
2674
- flags_: uint
2674
+ flags: uint
2675
2675
  decoder: ma_decoder
2676
2676
  isDecoderInitialized: uint
2677
2677
  totalLengthInPCMFrames: ulong
@@ -2690,7 +2690,7 @@ struct ma_resource_manager_data_stream:
2690
2690
 
2691
2691
  struct ma_resource_manager_data_source:
2692
2692
  backend: ma_resource_manager_data_source_backend
2693
- flags_: uint
2693
+ flags: uint
2694
2694
  executionCounter: uint
2695
2695
  executionPointer: uint
2696
2696
 
@@ -2703,7 +2703,7 @@ struct ma_resource_manager_config:
2703
2703
  jobThreadCount: uint
2704
2704
  jobThreadStackSize: ptr_uint
2705
2705
  jobQueueCapacity: uint
2706
- flags_: uint
2706
+ flags: uint
2707
2707
  pVFS: ptr[ma_vfs]
2708
2708
  ppCustomDecodingBackendVTables: ptr[ptr[ma_decoding_backend_vtable]]
2709
2709
  customDecodingBackendCount: uint
@@ -2803,7 +2803,7 @@ struct ma_node_vtable:
2803
2803
  onGetRequiredInputFrameCount: fn(arg0: ptr[ma_node], arg1: ma_uint32, arg2: ptr[ma_uint32]) -> ma_result
2804
2804
  inputBusCount: ubyte
2805
2805
  outputBusCount: ubyte
2806
- flags_: uint
2806
+ flags: uint
2807
2807
 
2808
2808
  struct ma_node_config:
2809
2809
  vtable: const_ptr[ma_node_vtable]
@@ -2820,7 +2820,7 @@ struct ma_node_output_bus:
2820
2820
  outputBusIndex: ubyte
2821
2821
  channels: ubyte
2822
2822
  inputNodeInputBusIndex: ubyte
2823
- flags_: uint
2823
+ flags: uint
2824
2824
  refCount: uint
2825
2825
  isAttached: uint
2826
2826
  lock: uint
@@ -3078,7 +3078,7 @@ flags ma_engine_node_type: int
3078
3078
 
3079
3079
  struct ma_engine_node_config:
3080
3080
  pEngine: ptr[ma_engine]
3081
- type_: ma_engine_node_type
3081
+ type: ma_engine_node_type
3082
3082
  channelsIn: uint
3083
3083
  channelsOut: uint
3084
3084
  sampleRate: uint
@@ -3129,7 +3129,7 @@ struct ma_sound_config:
3129
3129
  channelsIn: uint
3130
3130
  channelsOut: uint
3131
3131
  monoExpansionMode: ma_mono_expansion_mode
3132
- flags_: uint
3132
+ flags: uint
3133
3133
  volumeSmoothTimeInPCMFrames: uint
3134
3134
  initialSeekPointInPCMFrames: ulong
3135
3135
  rangeBegInPCMFrames: ulong
data/std/c/raygui.mt CHANGED
@@ -250,7 +250,7 @@ struct FilePathList:
250
250
 
251
251
  struct AutomationEvent:
252
252
  frame: uint
253
- type_: uint
253
+ type: uint
254
254
  params: array[int, 4]
255
255
 
256
256
  struct AutomationEventList:
data/std/c/raylib.mt CHANGED
@@ -249,7 +249,7 @@ struct FilePathList:
249
249
 
250
250
  struct AutomationEvent:
251
251
  frame: uint
252
- type_: uint
252
+ type: uint
253
253
  params: array[int, 4]
254
254
 
255
255
  struct AutomationEventList:
data/std/c/rpng.mt CHANGED
@@ -5,7 +5,7 @@ include "rpng.h"
5
5
 
6
6
  struct rpng_chunk:
7
7
  length: int
8
- type_: array[char, 4]
8
+ type: array[char, 4]
9
9
  data: ptr[char]
10
10
  crc: uint
11
11
 
data/std/c/rres.mt CHANGED
@@ -11,11 +11,11 @@ struct rresFileHeader:
11
11
  reserved: uint
12
12
 
13
13
  struct rresResourceChunkInfo:
14
- type_: array[ubyte, 4]
14
+ type: array[ubyte, 4]
15
15
  id: uint
16
16
  compType: ubyte
17
17
  cipherType: ubyte
18
- flags_: ushort
18
+ flags: ushort
19
19
  packedSize: uint
20
20
  baseSize: uint
21
21
  nextOffset: uint
data/std/c/sdl3.mt CHANGED
@@ -249,7 +249,7 @@ struct SDL_AssertData:
249
249
  condition: cstr
250
250
  filename: cstr
251
251
  linenum: int
252
- function_: cstr
252
+ function: cstr
253
253
  next: const_ptr[SDL_AssertData]
254
254
 
255
255
  external function SDL_ReportAssertion(data: ptr[SDL_AssertData], func: cstr, file: cstr, line: int) -> SDL_AssertState
@@ -275,7 +275,7 @@ flags SDL_AsyncIOResult: int
275
275
 
276
276
  struct SDL_AsyncIOOutcome:
277
277
  asyncio: ptr[SDL_AsyncIO]
278
- type_: SDL_AsyncIOTaskType
278
+ type: SDL_AsyncIOTaskType
279
279
  result: SDL_AsyncIOResult
280
280
  buffer: ptr[void]
281
281
  offset: ptr_uint
@@ -945,7 +945,7 @@ enum SDL_FlipMode: int
945
945
  SDL_FLIP_HORIZONTAL_AND_VERTICAL = 3
946
946
 
947
947
  struct SDL_Surface:
948
- flags_: uint
948
+ flags: uint
949
949
  format: SDL_PixelFormat
950
950
  w: int
951
951
  h: int
@@ -1420,12 +1420,12 @@ struct SDL_VirtualJoystickTouchpadDesc:
1420
1420
  padding: array[Uint16, 3]
1421
1421
 
1422
1422
  struct SDL_VirtualJoystickSensorDesc:
1423
- type_: SDL_SensorType
1423
+ type: SDL_SensorType
1424
1424
  rate: float
1425
1425
 
1426
1426
  struct SDL_VirtualJoystickDesc:
1427
1427
  version: uint
1428
- type_: ushort
1428
+ type: ushort
1429
1429
  padding: ushort
1430
1430
  vendor_id: ushort
1431
1431
  product_id: ushort
@@ -2178,12 +2178,12 @@ enum SDL_EventType: int
2178
2178
  SDL_EVENT_ENUM_PADDING = 2147483647
2179
2179
 
2180
2180
  struct SDL_CommonEvent:
2181
- type_: uint
2181
+ type: uint
2182
2182
  reserved: uint
2183
2183
  timestamp: ptr_uint
2184
2184
 
2185
2185
  struct SDL_DisplayEvent:
2186
- type_: SDL_EventType
2186
+ type: SDL_EventType
2187
2187
  reserved: uint
2188
2188
  timestamp: ptr_uint
2189
2189
  displayID: uint
@@ -2191,7 +2191,7 @@ struct SDL_DisplayEvent:
2191
2191
  data2: int
2192
2192
 
2193
2193
  struct SDL_WindowEvent:
2194
- type_: SDL_EventType
2194
+ type: SDL_EventType
2195
2195
  reserved: uint
2196
2196
  timestamp: ptr_uint
2197
2197
  windowID: uint
@@ -2199,13 +2199,13 @@ struct SDL_WindowEvent:
2199
2199
  data2: int
2200
2200
 
2201
2201
  struct SDL_KeyboardDeviceEvent:
2202
- type_: SDL_EventType
2202
+ type: SDL_EventType
2203
2203
  reserved: uint
2204
2204
  timestamp: ptr_uint
2205
2205
  which: uint
2206
2206
 
2207
2207
  struct SDL_KeyboardEvent:
2208
- type_: SDL_EventType
2208
+ type: SDL_EventType
2209
2209
  reserved: uint
2210
2210
  timestamp: ptr_uint
2211
2211
  windowID: uint
@@ -2218,7 +2218,7 @@ struct SDL_KeyboardEvent:
2218
2218
  repeat: bool
2219
2219
 
2220
2220
  struct SDL_TextEditingEvent:
2221
- type_: SDL_EventType
2221
+ type: SDL_EventType
2222
2222
  reserved: uint
2223
2223
  timestamp: ptr_uint
2224
2224
  windowID: uint
@@ -2227,7 +2227,7 @@ struct SDL_TextEditingEvent:
2227
2227
  length: int
2228
2228
 
2229
2229
  struct SDL_TextEditingCandidatesEvent:
2230
- type_: SDL_EventType
2230
+ type: SDL_EventType
2231
2231
  reserved: uint
2232
2232
  timestamp: ptr_uint
2233
2233
  windowID: uint
@@ -2240,20 +2240,20 @@ struct SDL_TextEditingCandidatesEvent:
2240
2240
  padding3: ubyte
2241
2241
 
2242
2242
  struct SDL_TextInputEvent:
2243
- type_: SDL_EventType
2243
+ type: SDL_EventType
2244
2244
  reserved: uint
2245
2245
  timestamp: ptr_uint
2246
2246
  windowID: uint
2247
2247
  text: cstr
2248
2248
 
2249
2249
  struct SDL_MouseDeviceEvent:
2250
- type_: SDL_EventType
2250
+ type: SDL_EventType
2251
2251
  reserved: uint
2252
2252
  timestamp: ptr_uint
2253
2253
  which: uint
2254
2254
 
2255
2255
  struct SDL_MouseMotionEvent:
2256
- type_: SDL_EventType
2256
+ type: SDL_EventType
2257
2257
  reserved: uint
2258
2258
  timestamp: ptr_uint
2259
2259
  windowID: uint
@@ -2265,7 +2265,7 @@ struct SDL_MouseMotionEvent:
2265
2265
  yrel: float
2266
2266
 
2267
2267
  struct SDL_MouseButtonEvent:
2268
- type_: SDL_EventType
2268
+ type: SDL_EventType
2269
2269
  reserved: uint
2270
2270
  timestamp: ptr_uint
2271
2271
  windowID: uint
@@ -2278,7 +2278,7 @@ struct SDL_MouseButtonEvent:
2278
2278
  y: float
2279
2279
 
2280
2280
  struct SDL_MouseWheelEvent:
2281
- type_: SDL_EventType
2281
+ type: SDL_EventType
2282
2282
  reserved: uint
2283
2283
  timestamp: ptr_uint
2284
2284
  windowID: uint
@@ -2292,7 +2292,7 @@ struct SDL_MouseWheelEvent:
2292
2292
  integer_y: int
2293
2293
 
2294
2294
  struct SDL_JoyAxisEvent:
2295
- type_: SDL_EventType
2295
+ type: SDL_EventType
2296
2296
  reserved: uint
2297
2297
  timestamp: ptr_uint
2298
2298
  which: uint
@@ -2304,7 +2304,7 @@ struct SDL_JoyAxisEvent:
2304
2304
  padding4: ushort
2305
2305
 
2306
2306
  struct SDL_JoyBallEvent:
2307
- type_: SDL_EventType
2307
+ type: SDL_EventType
2308
2308
  reserved: uint
2309
2309
  timestamp: ptr_uint
2310
2310
  which: uint
@@ -2316,7 +2316,7 @@ struct SDL_JoyBallEvent:
2316
2316
  yrel: short
2317
2317
 
2318
2318
  struct SDL_JoyHatEvent:
2319
- type_: SDL_EventType
2319
+ type: SDL_EventType
2320
2320
  reserved: uint
2321
2321
  timestamp: ptr_uint
2322
2322
  which: uint
@@ -2326,7 +2326,7 @@ struct SDL_JoyHatEvent:
2326
2326
  padding2: ubyte
2327
2327
 
2328
2328
  struct SDL_JoyButtonEvent:
2329
- type_: SDL_EventType
2329
+ type: SDL_EventType
2330
2330
  reserved: uint
2331
2331
  timestamp: ptr_uint
2332
2332
  which: uint
@@ -2336,13 +2336,13 @@ struct SDL_JoyButtonEvent:
2336
2336
  padding2: ubyte
2337
2337
 
2338
2338
  struct SDL_JoyDeviceEvent:
2339
- type_: SDL_EventType
2339
+ type: SDL_EventType
2340
2340
  reserved: uint
2341
2341
  timestamp: ptr_uint
2342
2342
  which: uint
2343
2343
 
2344
2344
  struct SDL_JoyBatteryEvent:
2345
- type_: SDL_EventType
2345
+ type: SDL_EventType
2346
2346
  reserved: uint
2347
2347
  timestamp: ptr_uint
2348
2348
  which: uint
@@ -2350,7 +2350,7 @@ struct SDL_JoyBatteryEvent:
2350
2350
  percent: int
2351
2351
 
2352
2352
  struct SDL_GamepadAxisEvent:
2353
- type_: SDL_EventType
2353
+ type: SDL_EventType
2354
2354
  reserved: uint
2355
2355
  timestamp: ptr_uint
2356
2356
  which: uint
@@ -2362,7 +2362,7 @@ struct SDL_GamepadAxisEvent:
2362
2362
  padding4: ushort
2363
2363
 
2364
2364
  struct SDL_GamepadButtonEvent:
2365
- type_: SDL_EventType
2365
+ type: SDL_EventType
2366
2366
  reserved: uint
2367
2367
  timestamp: ptr_uint
2368
2368
  which: uint
@@ -2372,13 +2372,13 @@ struct SDL_GamepadButtonEvent:
2372
2372
  padding2: ubyte
2373
2373
 
2374
2374
  struct SDL_GamepadDeviceEvent:
2375
- type_: SDL_EventType
2375
+ type: SDL_EventType
2376
2376
  reserved: uint
2377
2377
  timestamp: ptr_uint
2378
2378
  which: uint
2379
2379
 
2380
2380
  struct SDL_GamepadTouchpadEvent:
2381
- type_: SDL_EventType
2381
+ type: SDL_EventType
2382
2382
  reserved: uint
2383
2383
  timestamp: ptr_uint
2384
2384
  which: uint
@@ -2389,7 +2389,7 @@ struct SDL_GamepadTouchpadEvent:
2389
2389
  pressure: float
2390
2390
 
2391
2391
  struct SDL_GamepadSensorEvent:
2392
- type_: SDL_EventType
2392
+ type: SDL_EventType
2393
2393
  reserved: uint
2394
2394
  timestamp: ptr_uint
2395
2395
  which: uint
@@ -2398,7 +2398,7 @@ struct SDL_GamepadSensorEvent:
2398
2398
  sensor_timestamp: ptr_uint
2399
2399
 
2400
2400
  struct SDL_AudioDeviceEvent:
2401
- type_: SDL_EventType
2401
+ type: SDL_EventType
2402
2402
  reserved: uint
2403
2403
  timestamp: ptr_uint
2404
2404
  which: uint
@@ -2408,19 +2408,19 @@ struct SDL_AudioDeviceEvent:
2408
2408
  padding3: ubyte
2409
2409
 
2410
2410
  struct SDL_CameraDeviceEvent:
2411
- type_: SDL_EventType
2411
+ type: SDL_EventType
2412
2412
  reserved: uint
2413
2413
  timestamp: ptr_uint
2414
2414
  which: uint
2415
2415
 
2416
2416
  struct SDL_RenderEvent:
2417
- type_: SDL_EventType
2417
+ type: SDL_EventType
2418
2418
  reserved: uint
2419
2419
  timestamp: ptr_uint
2420
2420
  windowID: uint
2421
2421
 
2422
2422
  struct SDL_TouchFingerEvent:
2423
- type_: SDL_EventType
2423
+ type: SDL_EventType
2424
2424
  reserved: uint
2425
2425
  timestamp: ptr_uint
2426
2426
  touchID: ptr_uint
@@ -2433,21 +2433,21 @@ struct SDL_TouchFingerEvent:
2433
2433
  windowID: uint
2434
2434
 
2435
2435
  struct SDL_PinchFingerEvent:
2436
- type_: SDL_EventType
2436
+ type: SDL_EventType
2437
2437
  reserved: uint
2438
2438
  timestamp: ptr_uint
2439
2439
  scale: float
2440
2440
  windowID: uint
2441
2441
 
2442
2442
  struct SDL_PenProximityEvent:
2443
- type_: SDL_EventType
2443
+ type: SDL_EventType
2444
2444
  reserved: uint
2445
2445
  timestamp: ptr_uint
2446
2446
  windowID: uint
2447
2447
  which: uint
2448
2448
 
2449
2449
  struct SDL_PenMotionEvent:
2450
- type_: SDL_EventType
2450
+ type: SDL_EventType
2451
2451
  reserved: uint
2452
2452
  timestamp: ptr_uint
2453
2453
  windowID: uint
@@ -2457,7 +2457,7 @@ struct SDL_PenMotionEvent:
2457
2457
  y: float
2458
2458
 
2459
2459
  struct SDL_PenTouchEvent:
2460
- type_: SDL_EventType
2460
+ type: SDL_EventType
2461
2461
  reserved: uint
2462
2462
  timestamp: ptr_uint
2463
2463
  windowID: uint
@@ -2469,7 +2469,7 @@ struct SDL_PenTouchEvent:
2469
2469
  down: bool
2470
2470
 
2471
2471
  struct SDL_PenButtonEvent:
2472
- type_: SDL_EventType
2472
+ type: SDL_EventType
2473
2473
  reserved: uint
2474
2474
  timestamp: ptr_uint
2475
2475
  windowID: uint
@@ -2481,7 +2481,7 @@ struct SDL_PenButtonEvent:
2481
2481
  down: bool
2482
2482
 
2483
2483
  struct SDL_PenAxisEvent:
2484
- type_: SDL_EventType
2484
+ type: SDL_EventType
2485
2485
  reserved: uint
2486
2486
  timestamp: ptr_uint
2487
2487
  windowID: uint
@@ -2493,7 +2493,7 @@ struct SDL_PenAxisEvent:
2493
2493
  value: float
2494
2494
 
2495
2495
  struct SDL_DropEvent:
2496
- type_: SDL_EventType
2496
+ type: SDL_EventType
2497
2497
  reserved: uint
2498
2498
  timestamp: ptr_uint
2499
2499
  windowID: uint
@@ -2503,7 +2503,7 @@ struct SDL_DropEvent:
2503
2503
  data: cstr
2504
2504
 
2505
2505
  struct SDL_ClipboardEvent:
2506
- type_: SDL_EventType
2506
+ type: SDL_EventType
2507
2507
  reserved: uint
2508
2508
  timestamp: ptr_uint
2509
2509
  owner: bool
@@ -2511,7 +2511,7 @@ struct SDL_ClipboardEvent:
2511
2511
  mime_types: ptr[cstr]
2512
2512
 
2513
2513
  struct SDL_SensorEvent:
2514
- type_: SDL_EventType
2514
+ type: SDL_EventType
2515
2515
  reserved: uint
2516
2516
  timestamp: ptr_uint
2517
2517
  which: uint
@@ -2519,12 +2519,12 @@ struct SDL_SensorEvent:
2519
2519
  sensor_timestamp: ptr_uint
2520
2520
 
2521
2521
  struct SDL_QuitEvent:
2522
- type_: SDL_EventType
2522
+ type: SDL_EventType
2523
2523
  reserved: uint
2524
2524
  timestamp: ptr_uint
2525
2525
 
2526
2526
  struct SDL_UserEvent:
2527
- type_: uint
2527
+ type: uint
2528
2528
  reserved: uint
2529
2529
  timestamp: ptr_uint
2530
2530
  windowID: uint
@@ -2533,7 +2533,7 @@ struct SDL_UserEvent:
2533
2533
  data2: ptr[void]
2534
2534
 
2535
2535
  union SDL_Event:
2536
- type_: uint
2536
+ type: uint
2537
2537
  common: SDL_CommonEvent
2538
2538
  display: SDL_DisplayEvent
2539
2539
  window: SDL_WindowEvent
@@ -2629,7 +2629,7 @@ enum SDL_PathType: int
2629
2629
  SDL_PATHTYPE_OTHER = 3
2630
2630
 
2631
2631
  struct SDL_PathInfo:
2632
- type_: SDL_PathType
2632
+ type: SDL_PathType
2633
2633
  size: ptr_uint
2634
2634
  create_time: ptr_int
2635
2635
  modify_time: ptr_int
@@ -3088,7 +3088,7 @@ struct SDL_GPUShaderCreateInfo:
3088
3088
  props: uint
3089
3089
 
3090
3090
  struct SDL_GPUTextureCreateInfo:
3091
- type_: SDL_GPUTextureType
3091
+ type: SDL_GPUTextureType
3092
3092
  format: SDL_GPUTextureFormat
3093
3093
  usage: uint
3094
3094
  width: uint
@@ -3357,11 +3357,11 @@ type SDL_HapticDirectionType = ubyte
3357
3357
  type SDL_HapticEffectID = int
3358
3358
 
3359
3359
  struct SDL_HapticDirection:
3360
- type_: ubyte
3360
+ type: ubyte
3361
3361
  dir: array[Sint32, 3]
3362
3362
 
3363
3363
  struct SDL_HapticConstant:
3364
- type_: ushort
3364
+ type: ushort
3365
3365
  direction: SDL_HapticDirection
3366
3366
  length: uint
3367
3367
  delay: ushort
@@ -3374,7 +3374,7 @@ struct SDL_HapticConstant:
3374
3374
  fade_level: ushort
3375
3375
 
3376
3376
  struct SDL_HapticPeriodic:
3377
- type_: ushort
3377
+ type: ushort
3378
3378
  direction: SDL_HapticDirection
3379
3379
  length: uint
3380
3380
  delay: ushort
@@ -3390,7 +3390,7 @@ struct SDL_HapticPeriodic:
3390
3390
  fade_level: ushort
3391
3391
 
3392
3392
  struct SDL_HapticCondition:
3393
- type_: ushort
3393
+ type: ushort
3394
3394
  direction: SDL_HapticDirection
3395
3395
  length: uint
3396
3396
  delay: ushort
@@ -3404,7 +3404,7 @@ struct SDL_HapticCondition:
3404
3404
  center: array[Sint16, 3]
3405
3405
 
3406
3406
  struct SDL_HapticRamp:
3407
- type_: ushort
3407
+ type: ushort
3408
3408
  direction: SDL_HapticDirection
3409
3409
  length: uint
3410
3410
  delay: ushort
@@ -3418,13 +3418,13 @@ struct SDL_HapticRamp:
3418
3418
  fade_level: ushort
3419
3419
 
3420
3420
  struct SDL_HapticLeftRight:
3421
- type_: ushort
3421
+ type: ushort
3422
3422
  length: uint
3423
3423
  large_magnitude: ushort
3424
3424
  small_magnitude: ushort
3425
3425
 
3426
3426
  struct SDL_HapticCustom:
3427
- type_: ushort
3427
+ type: ushort
3428
3428
  direction: SDL_HapticDirection
3429
3429
  length: uint
3430
3430
  delay: ushort
@@ -3440,7 +3440,7 @@ struct SDL_HapticCustom:
3440
3440
  fade_level: ushort
3441
3441
 
3442
3442
  union SDL_HapticEffect:
3443
- type_: ushort
3443
+ type: ushort
3444
3444
  constant: SDL_HapticConstant
3445
3445
  periodic: SDL_HapticPeriodic
3446
3446
  condition: SDL_HapticCondition
@@ -3646,7 +3646,7 @@ type SDL_MessageBoxFlags = uint
3646
3646
  type SDL_MessageBoxButtonFlags = uint
3647
3647
 
3648
3648
  struct SDL_MessageBoxButtonData:
3649
- flags_: uint
3649
+ flags: uint
3650
3650
  buttonID: int
3651
3651
  text: cstr
3652
3652
 
@@ -3667,7 +3667,7 @@ struct SDL_MessageBoxColorScheme:
3667
3667
  colors: array[SDL_MessageBoxColor, 5]
3668
3668
 
3669
3669
  struct SDL_MessageBoxData:
3670
- flags_: uint
3670
+ flags: uint
3671
3671
  window: ptr[SDL_Window]
3672
3672
  title: cstr
3673
3673
  message: cstr
data/std/c/sqlite3.mt CHANGED
@@ -544,7 +544,7 @@ struct sqlite3_rtree_query_info:
544
544
  rScore: double
545
545
  apSqlParam: ptr[ptr[sqlite3_value]]
546
546
 
547
- const SQLITE_VERSION_NUMBER: int = 3053003
547
+ const SQLITE_VERSION_NUMBER: int = 3053004
548
548
  const SQLITE_OK: int = 0
549
549
  const SQLITE_ERROR: int = 1
550
550
  const SQLITE_INTERNAL: int = 2
@@ -128,7 +128,7 @@ struct stbtt_vertex:
128
128
  cy: short
129
129
  cx1: short
130
130
  cy1: short
131
- type_: ubyte
131
+ type: ubyte
132
132
  padding: ubyte
133
133
 
134
134
  external function stbtt_IsGlyphEmpty(info: const_ptr[stbtt_fontinfo], glyph_index: int) -> int