idalib/
meta.rs

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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
use std::marker::PhantomData;
use std::mem;

use bitflags::bitflags;

use crate::ffi::inf::*;
use crate::idb::IDB;
use crate::Address;

bitflags! {
    #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct AnalysisFlags: u32 {
        const CODE = AF_CODE as _;
        const MARKCODE = AF_MARKCODE as _;
        const JUMPTBL = AF_JUMPTBL as _;
        const PURDAT = AF_PURDAT as _;
        const USED = AF_USED as _;
        const UNK = AF_UNK as _;

        const PROCPTR = AF_PROCPTR as _;
        const PROC = AF_PROC as _;
        const FTAIL = AF_FTAIL as _;
        const LVAR = AF_LVAR as _;
        const STKARG = AF_STKARG as _;
        const REGARG = AF_REGARG as _;
        const TRACE = AF_TRACE as _;
        const VERSP = AF_VERSP as _;
        const ANORET = AF_ANORET as _;
        const MEMFUNC = AF_MEMFUNC as _;
        const TRFUNC = AF_TRFUNC as _;

        const STRLIT = AF_STRLIT as _;
        const CHKUNI = AF_CHKUNI as _;
        const FIXUP = AF_FIXUP as _;
        const DREFOFF = AF_DREFOFF as _;
        const IMMOFF = AF_IMMOFF as _;
        const DATOFF = AF_DATOFF as _;

        const FLIRT = AF_FLIRT as _;
        const SIGCMT = AF_SIGCMT as _;
        const SIGMLT = AF_SIGMLT as _;
        const HFLIRT = AF_HFLIRT as _;

        const JFUNC = AF_JFUNC as _;
        const NULLSUB = AF_NULLSUB as _;

        const DODATA = AF_DODATA as _;
        const DOCODE = AF_DOCODE as _;
        const FINAL = AF_FINAL as _;
    }
}

bitflags! {
    #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct AnalysisFlags2: u32 {
        const DOEH = AF2_DOEH as _;
        const DORTTI = AF2_DORTTI as _;
        const MACRO = AF2_MACRO as _;
        const MERGESTR = AF2_MERGESTR as _;
    }
}

bitflags! {
    #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct ShowXRefFlags: u8 {
        const SEGXRF = SW_SEGXRF as _;
        const XRFMRK = SW_XRFMRK as _;
        const XRFFNC = SW_XRFFNC as _;
        const XRFVAL = SW_XRFVAL as _;
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(u32)]
pub enum FileType {
    #[doc(hidden)]
    OldEXE = filetype_t::f_EXE_old as _,
    #[doc(hidden)]
    OldCOM = filetype_t::f_COM_old as _,
    BIN = filetype_t::f_BIN as _,
    DRV = filetype_t::f_DRV as _,
    WIN = filetype_t::f_WIN as _,
    HEX = filetype_t::f_HEX as _,
    MEX = filetype_t::f_MEX as _,
    LX = filetype_t::f_LX as _,
    LE = filetype_t::f_LE as _,
    NLM = filetype_t::f_NLM as _,
    COFF = filetype_t::f_COFF as _,
    PE = filetype_t::f_PE as _,
    OMF = filetype_t::f_OMF as _,
    SREC = filetype_t::f_SREC as _,
    ZIP = filetype_t::f_ZIP as _,
    OMFLIB = filetype_t::f_OMFLIB as _,
    AR = filetype_t::f_AR as _,
    LOADER = filetype_t::f_LOADER as _,
    ELF = filetype_t::f_ELF as _,
    W32RUN = filetype_t::f_W32RUN as _,
    AOUT = filetype_t::f_AOUT as _,
    PRC = filetype_t::f_PRC as _,
    EXE = filetype_t::f_EXE as _,
    COM = filetype_t::f_COM as _,
    AIXAR = filetype_t::f_AIXAR as _,
    MACHO = filetype_t::f_MACHO as _,
    PSXOBJ = filetype_t::f_PSXOBJ as _,
    MD1IMG = filetype_t::f_MD1IMG as _,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(u8)]
pub enum Compiler {
    UNK = COMP_UNK as _,
    MS = COMP_MS as _,
    BC = COMP_BC as _,
    WATCOM = COMP_WATCOM as _,
    GNU = COMP_GNU as _,
    VISAGE = COMP_VISAGE as _,
    BP = COMP_BP as _,
    UNSURE = COMP_UNSURE as _,
}

pub struct Metadata<'a> {
    _marker: PhantomData<&'a IDB>,
}

impl<'a> Metadata<'a> {
    pub(crate) fn new() -> Self {
        Self {
            _marker: PhantomData,
        }
    }

    pub fn version(&self) -> u16 {
        unsafe { idalib_inf_get_version() }
    }

    pub fn genflags(&self) -> u16 {
        unsafe { idalib_inf_get_genflags() }
    }

    pub fn is_auto_enabled(&self) -> bool {
        unsafe { idalib_inf_is_auto_enabled() }
    }

    pub fn use_allasm(&self) -> bool {
        unsafe { idalib_inf_use_allasm() }
    }

    pub fn loading_idc(&self) -> bool {
        unsafe { idalib_inf_loading_idc() }
    }

    pub fn no_store_user_info(&self) -> bool {
        unsafe { idalib_inf_no_store_user_info() }
    }

    pub fn readonly_idb(&self) -> bool {
        unsafe { idalib_inf_readonly_idb() }
    }

    pub fn check_manual_ops(&self) -> bool {
        unsafe { idalib_inf_check_manual_ops() }
    }

    pub fn allow_non_matched_ops(&self) -> bool {
        unsafe { idalib_inf_allow_non_matched_ops() }
    }

    pub fn is_graph_view(&self) -> bool {
        unsafe { idalib_inf_is_graph_view() }
    }

    pub fn lflags(&self) -> u32 {
        unsafe { idalib_inf_get_lflags() }
    }

    pub fn decode_fpp(&self) -> bool {
        unsafe { idalib_inf_decode_fpp() }
    }

    pub fn is_32bit_or_higher(&self) -> bool {
        unsafe { idalib_inf_is_32bit_or_higher() }
    }

    pub fn is_32bit_exactly(&self) -> bool {
        unsafe { idalib_inf_is_32bit_exactly() }
    }

    pub fn is_16bit(&self) -> bool {
        unsafe { idalib_inf_is_16bit() }
    }

    pub fn is_64bit(&self) -> bool {
        unsafe { idalib_inf_is_64bit() }
    }

    pub fn is_dll(&self) -> bool {
        unsafe { idalib_inf_is_dll() }
    }

    pub fn is_flat_off32(&self) -> bool {
        unsafe { idalib_inf_is_flat_off32() }
    }

    pub fn is_be(&self) -> bool {
        unsafe { idalib_inf_is_be() }
    }

    pub fn is_wide_high_byte_first(&self) -> bool {
        unsafe { idalib_inf_is_wide_high_byte_first() }
    }

    pub fn dbg_no_store_path(&self) -> bool {
        unsafe { idalib_inf_dbg_no_store_path() }
    }

    pub fn is_snapshot(&self) -> bool {
        unsafe { idalib_inf_is_snapshot() }
    }

    pub fn pack_idb(&self) -> bool {
        unsafe { idalib_inf_pack_idb() }
    }

    pub fn compress_idb(&self) -> bool {
        unsafe { idalib_inf_compress_idb() }
    }

    pub fn is_kernel_mode(&self) -> bool {
        unsafe { idalib_inf_is_kernel_mode() }
    }

    pub fn app_bitness(&self) -> u32 {
        unsafe { idalib_inf_get_app_bitness().into() }
    }

    pub fn database_change_count(&self) -> u32 {
        unsafe { idalib_inf_get_database_change_count() }
    }

    pub fn filetype(&self) -> FileType {
        unsafe { mem::transmute(idalib_inf_get_filetype()) }
    }

    pub fn ostype(&self) -> u16 {
        unsafe { idalib_inf_get_ostype() }
    }

    pub fn apptype(&self) -> u16 {
        unsafe { idalib_inf_get_apptype() }
    }

    pub fn asmtype(&self) -> u8 {
        unsafe { idalib_inf_get_asmtype() }
    }

    pub fn specsegs(&self) -> u8 {
        unsafe { idalib_inf_get_specsegs() }
    }

    pub fn af(&self) -> AnalysisFlags {
        AnalysisFlags::from_bits_retain(unsafe { idalib_inf_get_af() })
    }

    pub fn trace_flow(&self) -> bool {
        unsafe { idalib_inf_trace_flow() }
    }

    pub fn mark_code(&self) -> bool {
        unsafe { idalib_inf_mark_code() }
    }

    pub fn create_jump_tables(&self) -> bool {
        unsafe { idalib_inf_create_jump_tables() }
    }

    pub fn noflow_to_data(&self) -> bool {
        unsafe { idalib_inf_noflow_to_data() }
    }

    pub fn create_all_xrefs(&self) -> bool {
        unsafe { idalib_inf_create_all_xrefs() }
    }

    pub fn create_func_from_ptr(&self) -> bool {
        unsafe { idalib_inf_create_func_from_ptr() }
    }

    pub fn create_func_from_call(&self) -> bool {
        unsafe { idalib_inf_create_func_from_call() }
    }

    pub fn create_func_tails(&self) -> bool {
        unsafe { idalib_inf_create_func_tails() }
    }

    pub fn should_create_stkvars(&self) -> bool {
        unsafe { idalib_inf_should_create_stkvars() }
    }

    pub fn propagate_stkargs(&self) -> bool {
        unsafe { idalib_inf_propagate_stkargs() }
    }

    pub fn propagate_regargs(&self) -> bool {
        unsafe { idalib_inf_propagate_regargs() }
    }

    pub fn should_trace_sp(&self) -> bool {
        unsafe { idalib_inf_should_trace_sp() }
    }

    pub fn full_sp_ana(&self) -> bool {
        unsafe { idalib_inf_full_sp_ana() }
    }

    pub fn noret_ana(&self) -> bool {
        unsafe { idalib_inf_noret_ana() }
    }

    pub fn guess_func_type(&self) -> bool {
        unsafe { idalib_inf_guess_func_type() }
    }

    pub fn truncate_on_del(&self) -> bool {
        unsafe { idalib_inf_truncate_on_del() }
    }

    pub fn create_strlit_on_xref(&self) -> bool {
        unsafe { idalib_inf_create_strlit_on_xref() }
    }

    pub fn check_unicode_strlits(&self) -> bool {
        unsafe { idalib_inf_check_unicode_strlits() }
    }

    pub fn create_off_using_fixup(&self) -> bool {
        unsafe { idalib_inf_create_off_using_fixup() }
    }

    pub fn create_off_on_dref(&self) -> bool {
        unsafe { idalib_inf_create_off_on_dref() }
    }

    pub fn op_offset(&self) -> bool {
        unsafe { idalib_inf_op_offset() }
    }

    pub fn data_offset(&self) -> bool {
        unsafe { idalib_inf_data_offset() }
    }

    pub fn use_flirt(&self) -> bool {
        unsafe { idalib_inf_use_flirt() }
    }

    pub fn append_sigcmt(&self) -> bool {
        unsafe { idalib_inf_append_sigcmt() }
    }

    pub fn allow_sigmulti(&self) -> bool {
        unsafe { idalib_inf_allow_sigmulti() }
    }

    pub fn hide_libfuncs(&self) -> bool {
        unsafe { idalib_inf_hide_libfuncs() }
    }

    pub fn rename_jumpfunc(&self) -> bool {
        unsafe { idalib_inf_rename_jumpfunc() }
    }

    pub fn rename_nullsub(&self) -> bool {
        unsafe { idalib_inf_rename_nullsub() }
    }

    pub fn coagulate_data(&self) -> bool {
        unsafe { idalib_inf_coagulate_data() }
    }

    pub fn coagulate_code(&self) -> bool {
        unsafe { idalib_inf_coagulate_code() }
    }

    pub fn final_pass(&self) -> bool {
        unsafe { idalib_inf_final_pass() }
    }

    pub fn af2(&self) -> u32 {
        unsafe { idalib_inf_get_af2() }
    }

    pub fn handle_eh(&self) -> bool {
        unsafe { idalib_inf_handle_eh() }
    }

    pub fn handle_rtti(&self) -> bool {
        unsafe { idalib_inf_handle_rtti() }
    }

    pub fn macros_enabled(&self) -> bool {
        unsafe { idalib_inf_macros_enabled() }
    }

    pub fn merge_strlits(&self) -> bool {
        unsafe { idalib_inf_merge_strlits() }
    }

    pub fn base_address(&self) -> Address {
        unsafe { idalib_inf_get_baseaddr().into() }
    }

    pub fn start_stack_segment(&self) -> Address {
        unsafe { idalib_inf_get_start_ss().into() }
    }

    pub fn start_code_segment(&self) -> Address {
        unsafe { idalib_inf_get_start_cs().into() }
    }

    pub fn start_instruction_pointer(&self) -> Address {
        unsafe { idalib_inf_get_start_ip().into() }
    }

    pub fn start_address(&self) -> Address {
        unsafe { idalib_inf_get_start_ea().into() }
    }

    pub fn start_stack_pointer(&self) -> Address {
        unsafe { idalib_inf_get_start_sp().into() }
    }

    pub fn main_address(&self) -> Address {
        unsafe { idalib_inf_get_main().into() }
    }

    pub fn min_address(&self) -> Address {
        unsafe { idalib_inf_get_min_ea().into() }
    }

    pub fn max_address(&self) -> Address {
        unsafe { idalib_inf_get_max_ea().into() }
    }

    pub fn omin_address(&self) -> Address {
        unsafe { idalib_inf_get_omin_ea().into() }
    }

    pub fn omax_ea(&self) -> Address {
        unsafe { idalib_inf_get_omax_ea().into() }
    }

    pub fn lowoff(&self) -> u64 {
        unsafe { idalib_inf_get_lowoff().into() }
    }

    pub fn highoff(&self) -> u64 {
        unsafe { idalib_inf_get_highoff().into() }
    }

    pub fn maxref(&self) -> u64 {
        unsafe { idalib_inf_get_maxref().into() }
    }

    pub fn netdelta(&self) -> i64 {
        unsafe { idalib_inf_get_netdelta().into() }
    }

    pub fn xrefnum(&self) -> u8 {
        unsafe { idalib_inf_get_xrefnum() }
    }

    pub fn type_xrefnum(&self) -> u8 {
        unsafe { idalib_inf_get_type_xrefnum() }
    }

    pub fn refcmtnum(&self) -> u8 {
        unsafe { idalib_inf_get_refcmtnum() }
    }

    pub fn xrefflag(&self) -> u8 {
        unsafe { idalib_inf_get_xrefflag() }
    }

    pub fn show_xref_seg(&self) -> bool {
        unsafe { idalib_inf_show_xref_seg() }
    }

    pub fn show_xref_tmarks(&self) -> bool {
        unsafe { idalib_inf_show_xref_tmarks() }
    }

    pub fn show_xref_fncoff(&self) -> bool {
        unsafe { idalib_inf_show_xref_fncoff() }
    }

    pub fn show_xref_val(&self) -> bool {
        unsafe { idalib_inf_show_xref_val() }
    }

    pub fn max_autoname_len(&self) -> u16 {
        unsafe { idalib_inf_get_max_autoname_len() }
    }

    pub fn nametype(&self) -> i8 {
        unsafe { idalib_inf_get_nametype() }
    }

    pub fn short_demnames(&self) -> u32 {
        unsafe { idalib_inf_get_short_demnames() }
    }

    pub fn long_demnames(&self) -> u32 {
        unsafe { idalib_inf_get_long_demnames() }
    }

    pub fn demnames(&self) -> u8 {
        unsafe { idalib_inf_get_demnames() }
    }

    pub fn listnames(&self) -> u8 {
        unsafe { idalib_inf_get_listnames() }
    }

    pub fn indent(&self) -> u8 {
        unsafe { idalib_inf_get_indent() }
    }

    pub fn cmt_indent(&self) -> u8 {
        unsafe { idalib_inf_get_cmt_indent() }
    }

    pub fn margin(&self) -> u16 {
        unsafe { idalib_inf_get_margin() }
    }

    pub fn lenxref(&self) -> u16 {
        unsafe { idalib_inf_get_lenxref() }
    }

    pub fn outflags(&self) -> u32 {
        unsafe { idalib_inf_get_outflags() }
    }

    pub fn show_void(&self) -> bool {
        unsafe { idalib_inf_show_void() }
    }

    pub fn show_auto(&self) -> bool {
        unsafe { idalib_inf_show_auto() }
    }

    pub fn gen_null(&self) -> bool {
        unsafe { idalib_inf_gen_null() }
    }

    pub fn show_line_pref(&self) -> bool {
        unsafe { idalib_inf_show_line_pref() }
    }

    pub fn line_pref_with_seg(&self) -> bool {
        unsafe { idalib_inf_line_pref_with_seg() }
    }

    pub fn gen_lzero(&self) -> bool {
        unsafe { idalib_inf_gen_lzero() }
    }

    pub fn gen_org(&self) -> bool {
        unsafe { idalib_inf_gen_org() }
    }

    pub fn gen_assume(&self) -> bool {
        unsafe { idalib_inf_gen_assume() }
    }

    pub fn gen_tryblks(&self) -> bool {
        unsafe { idalib_inf_gen_tryblks() }
    }

    pub fn cmtflg(&self) -> u8 {
        unsafe { idalib_inf_get_cmtflg() }
    }

    pub fn show_repeatables(&self) -> bool {
        unsafe { idalib_inf_show_repeatables() }
    }

    pub fn show_all_comments(&self) -> bool {
        unsafe { idalib_inf_show_all_comments() }
    }

    pub fn hide_comments(&self) -> bool {
        unsafe { idalib_inf_hide_comments() }
    }

    pub fn show_src_linnum(&self) -> bool {
        unsafe { idalib_inf_show_src_linnum() }
    }

    pub fn test_mode(&self) -> bool {
        unsafe { idalib_inf_test_mode() }
    }

    pub fn show_hidden_insns(&self) -> bool {
        unsafe { idalib_inf_show_hidden_insns() }
    }

    pub fn show_hidden_funcs(&self) -> bool {
        unsafe { idalib_inf_show_hidden_funcs() }
    }

    pub fn show_hidden_segms(&self) -> bool {
        unsafe { idalib_inf_show_hidden_segms() }
    }

    pub fn limiter(&self) -> u8 {
        unsafe { idalib_inf_get_limiter() }
    }

    pub fn is_limiter_thin(&self) -> bool {
        unsafe { idalib_inf_is_limiter_thin() }
    }

    pub fn is_limiter_thick(&self) -> bool {
        unsafe { idalib_inf_is_limiter_thick() }
    }

    pub fn is_limiter_empty(&self) -> bool {
        unsafe { idalib_inf_is_limiter_empty() }
    }

    pub fn bin_prefix_size(&self) -> i16 {
        unsafe { idalib_inf_get_bin_prefix_size().into() }
    }

    pub fn prefflag(&self) -> u8 {
        unsafe { idalib_inf_get_prefflag() }
    }

    pub fn prefix_show_segaddr(&self) -> bool {
        unsafe { idalib_inf_prefix_show_segaddr() }
    }

    pub fn prefix_show_funcoff(&self) -> bool {
        unsafe { idalib_inf_prefix_show_funcoff() }
    }

    pub fn prefix_show_stack(&self) -> bool {
        unsafe { idalib_inf_prefix_show_stack() }
    }

    pub fn prefix_truncate_opcode_bytes(&self) -> bool {
        unsafe { idalib_inf_prefix_truncate_opcode_bytes() }
    }

    pub fn strlit_flags(&self) -> u8 {
        unsafe { idalib_inf_get_strlit_flags() }
    }

    pub fn strlit_names(&self) -> bool {
        unsafe { idalib_inf_strlit_names() }
    }

    pub fn strlit_name_bit(&self) -> bool {
        unsafe { idalib_inf_strlit_name_bit() }
    }

    pub fn strlit_serial_names(&self) -> bool {
        unsafe { idalib_inf_strlit_serial_names() }
    }

    pub fn unicode_strlits(&self) -> bool {
        unsafe { idalib_inf_unicode_strlits() }
    }

    pub fn strlit_autocmt(&self) -> bool {
        unsafe { idalib_inf_strlit_autocmt() }
    }

    pub fn strlit_savecase(&self) -> bool {
        unsafe { idalib_inf_strlit_savecase() }
    }

    pub fn strlit_break(&self) -> u8 {
        unsafe { idalib_inf_get_strlit_break() }
    }

    pub fn strlit_zeroes(&self) -> i8 {
        unsafe { idalib_inf_get_strlit_zeroes() }
    }

    pub fn strtype(&self) -> i32 {
        unsafe { idalib_inf_get_strtype() }
    }

    pub fn strlit_sernum(&self) -> u64 {
        unsafe { idalib_inf_get_strlit_sernum().into() }
    }

    pub fn datatypes(&self) -> u64 {
        unsafe { idalib_inf_get_datatypes().into() }
    }

    pub fn abibits(&self) -> u32 {
        unsafe { idalib_inf_get_abibits() }
    }

    pub fn is_mem_aligned4(&self) -> bool {
        unsafe { idalib_inf_is_mem_aligned4() }
    }

    pub fn pack_stkargs(&self) -> bool {
        unsafe { idalib_inf_pack_stkargs() }
    }

    pub fn big_arg_align(&self) -> bool {
        unsafe { idalib_inf_big_arg_align() }
    }

    pub fn stack_ldbl(&self) -> bool {
        unsafe { idalib_inf_stack_ldbl() }
    }

    pub fn stack_varargs(&self) -> bool {
        unsafe { idalib_inf_stack_varargs() }
    }

    pub fn is_hard_float(&self) -> bool {
        unsafe { idalib_inf_is_hard_float() }
    }

    pub fn abi_set_by_user(&self) -> bool {
        unsafe { idalib_inf_abi_set_by_user() }
    }

    pub fn use_gcc_layout(&self) -> bool {
        unsafe { idalib_inf_use_gcc_layout() }
    }

    pub fn map_stkargs(&self) -> bool {
        unsafe { idalib_inf_map_stkargs() }
    }

    pub fn huge_arg_align(&self) -> bool {
        unsafe { idalib_inf_huge_arg_align() }
    }

    pub fn appcall_options(&self) -> u32 {
        unsafe { idalib_inf_get_appcall_options() }
    }

    pub fn privrange_start_address(&self) -> Address {
        unsafe { idalib_inf_get_privrange_start_ea().into() }
    }

    pub fn privrange_end_address(&self) -> Address {
        unsafe { idalib_inf_get_privrange_end_ea().into() }
    }

    pub fn cc_id(&self) -> Compiler {
        unsafe { mem::transmute(idalib_inf_get_cc_id() & COMP_MASK) }
    }

    pub fn cc_cm(&self) -> u8 {
        unsafe { idalib_inf_get_cc_cm() }
    }

    pub fn cc_size_i(&self) -> u8 {
        unsafe { idalib_inf_get_cc_size_i() }
    }

    pub fn cc_size_b(&self) -> u8 {
        unsafe { idalib_inf_get_cc_size_b() }
    }

    pub fn cc_size_e(&self) -> u8 {
        unsafe { idalib_inf_get_cc_size_e() }
    }

    pub fn cc_defalign(&self) -> u8 {
        unsafe { idalib_inf_get_cc_defalign() }
    }

    pub fn cc_size_s(&self) -> u8 {
        unsafe { idalib_inf_get_cc_size_s() }
    }

    pub fn cc_size_l(&self) -> u8 {
        unsafe { idalib_inf_get_cc_size_l() }
    }

    pub fn cc_size_ll(&self) -> u8 {
        unsafe { idalib_inf_get_cc_size_ll() }
    }

    pub fn cc_size_ldbl(&self) -> u8 {
        unsafe { idalib_inf_get_cc_size_ldbl() }
    }

    pub fn procname(&self) -> String {
        unsafe { idalib_inf_get_procname() }
    }

    pub fn strlit_pref(&self) -> String {
        unsafe { idalib_inf_get_strlit_pref() }
    }
}

pub struct MetadataMut<'a> {
    _marker: PhantomData<&'a mut IDB>,
}

impl<'a> MetadataMut<'a> {
    pub(crate) fn new() -> Self {
        Self {
            _marker: PhantomData,
        }
    }

    pub fn set_show_all_comments(&mut self) -> bool {
        unsafe { idalib_inf_set_show_all_comments() }
    }

    pub fn set_show_hidden_insns(&mut self) -> bool {
        unsafe { idalib_inf_set_show_hidden_insns() }
    }

    pub fn set_show_hidden_funcs(&mut self) -> bool {
        unsafe { idalib_inf_set_show_hidden_funcs() }
    }

    pub fn set_show_hidden_segms(&mut self) -> bool {
        unsafe { idalib_inf_set_show_hidden_segms() }
    }
}