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 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
|
---
PdbStream:
Age: 1
Guid: '{FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF}'
Features: [ VC140 ]
Version: VC70
TpiStream:
Version: VC80
Records:
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: '__vc_attributes::moduleAttribute'
UniqueName: '.?AUmoduleAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1
Name: dll
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2
Name: exe
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 3
Name: service
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 4
Name: unspecified
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2
Name: EXE
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 3
Name: SERVICE
- Kind: LF_ENUM
Enum:
NumEnumerators: 6
Options: [ None, Nested, HasUniqueName ]
FieldList: 4097
Name: '__vc_attributes::moduleAttribute::type_e'
UniqueName: '.?AW4type_e@moduleAttribute@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_MODIFIER
Modifier:
ModifiedType: 112
Modifiers: [ None, Const ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4099
Attrs: 65548
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4098, 4100, 4100, 4100, 116, 48, 4100, 116,
4100, 4100, 116, 48, 48, 4100, 4100 ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4096
Attrs: 66572
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4096
ThisType: 4102
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 15
ArgumentList: 4101
ThisPointerAdjustment: 0
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4098 ]
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4096
ThisType: 4102
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 1
ArgumentList: 4104
ThisPointerAdjustment: 0
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ ]
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4096
ThisType: 4102
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 0
ArgumentList: 4106
ThisPointerAdjustment: 0
- Kind: LF_METHODLIST
MethodOverloadList:
Methods:
- Type: 4103
Attrs: 3
VFTableOffset: -1
Name: ''
- Type: 4105
Attrs: 3
VFTableOffset: -1
Name: ''
- Type: 4107
Attrs: 3
VFTableOffset: -1
Name: ''
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_NESTTYPE
NestedType:
Type: 4098
Name: type_e
- Kind: LF_METHOD
OverloadedMethod:
NumOverloads: 3
MethodList: 4108
Name: moduleAttribute
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4098
FieldOffset: 0
Name: type
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 8
Name: name
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 16
Name: version
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 24
Name: uuid
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 116
FieldOffset: 32
Name: lcid
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 48
FieldOffset: 36
Name: control
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 40
Name: helpstring
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 116
FieldOffset: 48
Name: helpstringcontext
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 56
Name: helpstringdll
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 64
Name: helpfile
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 116
FieldOffset: 72
Name: helpcontext
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 48
FieldOffset: 76
Name: hidden
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 48
FieldOffset: 77
Name: restricted
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 80
Name: custom
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4100
FieldOffset: 88
Name: resource_name
- Kind: LF_STRUCTURE
Class:
MemberCount: 19
Options: [ None, HasConstructorOrDestructor, ContainsNestedClass, HasUniqueName ]
FieldList: 4109
Name: '__vc_attributes::moduleAttribute'
UniqueName: '.?AUmoduleAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 96
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: '__vc_attributes::event_receiverAttribute'
UniqueName: '.?AUevent_receiverAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 0
Name: native
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1
Name: com
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2
Name: managed
- Kind: LF_ENUM
Enum:
NumEnumerators: 3
Options: [ None, Nested, HasUniqueName ]
FieldList: 4112
Name: '__vc_attributes::event_receiverAttribute::type_e'
UniqueName: '.?AW4type_e@event_receiverAttribute@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4113, 48 ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4111
Attrs: 66572
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4111
ThisType: 4115
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 2
ArgumentList: 4114
ThisPointerAdjustment: 0
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4113 ]
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4111
ThisType: 4115
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 1
ArgumentList: 4117
ThisPointerAdjustment: 0
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4111
ThisType: 4115
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 0
ArgumentList: 4106
ThisPointerAdjustment: 0
- Kind: LF_METHODLIST
MethodOverloadList:
Methods:
- Type: 4116
Attrs: 3
VFTableOffset: -1
Name: ''
- Type: 4118
Attrs: 3
VFTableOffset: -1
Name: ''
- Type: 4119
Attrs: 3
VFTableOffset: -1
Name: ''
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_NESTTYPE
NestedType:
Type: 4113
Name: type_e
- Kind: LF_METHOD
OverloadedMethod:
NumOverloads: 3
MethodList: 4120
Name: event_receiverAttribute
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4113
FieldOffset: 0
Name: type
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 48
FieldOffset: 4
Name: layout_dependent
- Kind: LF_STRUCTURE
Class:
MemberCount: 6
Options: [ None, HasConstructorOrDestructor, ContainsNestedClass, HasUniqueName ]
FieldList: 4121
Name: '__vc_attributes::event_receiverAttribute'
UniqueName: '.?AUevent_receiverAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 8
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: '__vc_attributes::aggregatableAttribute'
UniqueName: '.?AUaggregatableAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 0
Name: never
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1
Name: allowed
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2
Name: always
- Kind: LF_ENUM
Enum:
NumEnumerators: 3
Options: [ None, Nested, HasUniqueName ]
FieldList: 4124
Name: '__vc_attributes::aggregatableAttribute::type_e'
UniqueName: '.?AW4type_e@aggregatableAttribute@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4125 ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4123
Attrs: 66572
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4123
ThisType: 4127
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 1
ArgumentList: 4126
ThisPointerAdjustment: 0
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4123
ThisType: 4127
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 0
ArgumentList: 4106
ThisPointerAdjustment: 0
- Kind: LF_METHODLIST
MethodOverloadList:
Methods:
- Type: 4128
Attrs: 3
VFTableOffset: -1
Name: ''
- Type: 4129
Attrs: 3
VFTableOffset: -1
Name: ''
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_NESTTYPE
NestedType:
Type: 4125
Name: type_e
- Kind: LF_METHOD
OverloadedMethod:
NumOverloads: 2
MethodList: 4130
Name: aggregatableAttribute
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4125
FieldOffset: 0
Name: type
- Kind: LF_STRUCTURE
Class:
MemberCount: 4
Options: [ None, HasConstructorOrDestructor, ContainsNestedClass, HasUniqueName ]
FieldList: 4131
Name: '__vc_attributes::aggregatableAttribute'
UniqueName: '.?AUaggregatableAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 4
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: '__vc_attributes::threadingAttribute'
UniqueName: '.?AUthreadingAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1
Name: apartment
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2
Name: single
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 3
Name: free
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 4
Name: neutral
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 5
Name: both
- Kind: LF_ENUM
Enum:
NumEnumerators: 5
Options: [ None, Nested, HasUniqueName ]
FieldList: 4134
Name: '__vc_attributes::threadingAttribute::threading_e'
UniqueName: '.?AW4threading_e@threadingAttribute@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4135 ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4133
Attrs: 66572
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4133
ThisType: 4137
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 1
ArgumentList: 4136
ThisPointerAdjustment: 0
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4133
ThisType: 4137
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 0
ArgumentList: 4106
ThisPointerAdjustment: 0
- Kind: LF_METHODLIST
MethodOverloadList:
Methods:
- Type: 4138
Attrs: 3
VFTableOffset: -1
Name: ''
- Type: 4139
Attrs: 3
VFTableOffset: -1
Name: ''
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_NESTTYPE
NestedType:
Type: 4135
Name: threading_e
- Kind: LF_METHOD
OverloadedMethod:
NumOverloads: 2
MethodList: 4140
Name: threadingAttribute
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4135
FieldOffset: 0
Name: value
- Kind: LF_STRUCTURE
Class:
MemberCount: 4
Options: [ None, HasConstructorOrDestructor, ContainsNestedClass, HasUniqueName ]
FieldList: 4141
Name: '__vc_attributes::threadingAttribute'
UniqueName: '.?AUthreadingAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 4
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: '__vc_attributes::helper_attributes::usageAttribute'
UniqueName: '.?AUusageAttribute@helper_attributes@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 0
Name: eAnyUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1
Name: eCoClassUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2
Name: eCOMInterfaceUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 6
Name: eInterfaceUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 8
Name: eMemberUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 16
Name: eMethodUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 32
Name: eInterfaceMethodUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 64
Name: eInterfaceMemberUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 128
Name: eCoClassMemberUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 256
Name: eCoClassMethodUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 768
Name: eGlobalMethodUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1024
Name: eGlobalDataUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2048
Name: eClassUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 4096
Name: eInterfaceParameterUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 12288
Name: eMethodParameterUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 16384
Name: eIDLModuleUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 32768
Name: eAnonymousUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 65536
Name: eTypedefUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 131072
Name: eUnionUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 262144
Name: eEnumUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 524288
Name: eDefineTagUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1048576
Name: eStructUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2097152
Name: eLocalUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 4194304
Name: ePropertyUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 8388608
Name: eEventUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 16777216
Name: eTemplateUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 16777216
Name: eModuleUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 33554432
Name: eIllegalUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 67108864
Name: eAsynchronousUsage
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 4161535
Name: eAnyIDLUsage
- Kind: LF_ENUM
Enum:
NumEnumerators: 30
Options: [ None, Nested, HasUniqueName ]
FieldList: 4144
Name: '__vc_attributes::helper_attributes::usageAttribute::usage_e'
UniqueName: '.?AW4usage_e@usageAttribute@helper_attributes@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 117 ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4143
Attrs: 66572
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4143
ThisType: 4147
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 1
ArgumentList: 4146
ThisPointerAdjustment: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_NESTTYPE
NestedType:
Type: 4145
Name: usage_e
- Kind: LF_ONEMETHOD
OneMethod:
Type: 4148
Attrs: 3
VFTableOffset: -1
Name: usageAttribute
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 117
FieldOffset: 0
Name: value
- Kind: LF_STRUCTURE
Class:
MemberCount: 3
Options: [ None, HasConstructorOrDestructor, ContainsNestedClass, HasUniqueName ]
FieldList: 4149
Name: '__vc_attributes::helper_attributes::usageAttribute'
UniqueName: '.?AUusageAttribute@helper_attributes@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 4
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: '__vc_attributes::helper_attributes::v1_alttypeAttribute'
UniqueName: '.?AUv1_alttypeAttribute@helper_attributes@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 0
Name: eBoolean
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1
Name: eInteger
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 2
Name: eFloat
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 3
Name: eDouble
- Kind: LF_ENUM
Enum:
NumEnumerators: 4
Options: [ None, Nested, HasUniqueName ]
FieldList: 4152
Name: '__vc_attributes::helper_attributes::v1_alttypeAttribute::type_e'
UniqueName: '.?AW4type_e@v1_alttypeAttribute@helper_attributes@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4153 ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4151
Attrs: 66572
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4151
ThisType: 4155
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 1
ArgumentList: 4154
ThisPointerAdjustment: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_NESTTYPE
NestedType:
Type: 4153
Name: type_e
- Kind: LF_ONEMETHOD
OneMethod:
Type: 4156
Attrs: 3
VFTableOffset: -1
Name: v1_alttypeAttribute
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4153
FieldOffset: 0
Name: type
- Kind: LF_STRUCTURE
Class:
MemberCount: 3
Options: [ None, HasConstructorOrDestructor, ContainsNestedClass, HasUniqueName ]
FieldList: 4157
Name: '__vc_attributes::helper_attributes::v1_alttypeAttribute'
UniqueName: '.?AUv1_alttypeAttribute@helper_attributes@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 4
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: '__vc_attributes::event_sourceAttribute'
UniqueName: '.?AUevent_sourceAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_ENUM
Enum:
NumEnumerators: 3
Options: [ None, Nested, HasUniqueName ]
FieldList: 4112
Name: '__vc_attributes::event_sourceAttribute::type_e'
UniqueName: '.?AW4type_e@event_sourceAttribute@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 0
Name: speed
- Kind: LF_ENUMERATE
Enumerator:
Attrs: 3
Value: 1
Name: size
- Kind: LF_ENUM
Enum:
NumEnumerators: 2
Options: [ None, Nested, HasUniqueName ]
FieldList: 4161
Name: '__vc_attributes::event_sourceAttribute::optimize_e'
UniqueName: '.?AW4optimize_e@event_sourceAttribute@__vc_attributes@@'
UnderlyingType: 116
- Kind: LF_ARGLIST
ArgList:
ArgIndices: [ 4160 ]
- Kind: LF_POINTER
Pointer:
ReferentType: 4159
Attrs: 66572
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4159
ThisType: 4164
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 1
ArgumentList: 4163
ThisPointerAdjustment: 0
- Kind: LF_MFUNCTION
MemberFunction:
ReturnType: 3
ClassType: 4159
ThisType: 4164
CallConv: NearC
Options: [ None, Constructor ]
ParameterCount: 0
ArgumentList: 4106
ThisPointerAdjustment: 0
- Kind: LF_METHODLIST
MethodOverloadList:
Methods:
- Type: 4165
Attrs: 3
VFTableOffset: -1
Name: ''
- Type: 4166
Attrs: 3
VFTableOffset: -1
Name: ''
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_NESTTYPE
NestedType:
Type: 4160
Name: type_e
- Kind: LF_NESTTYPE
NestedType:
Type: 4162
Name: optimize_e
- Kind: LF_METHOD
OverloadedMethod:
NumOverloads: 2
MethodList: 4167
Name: event_sourceAttribute
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4160
FieldOffset: 0
Name: type
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 4162
FieldOffset: 4
Name: optimize
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 48
FieldOffset: 8
Name: decorate
- Kind: LF_STRUCTURE
Class:
MemberCount: 7
Options: [ None, HasConstructorOrDestructor, ContainsNestedClass, HasUniqueName ]
FieldList: 4168
Name: '__vc_attributes::event_sourceAttribute'
UniqueName: '.?AUevent_sourceAttribute@__vc_attributes@@'
DerivationList: 0
VTableShape: 0
Size: 12
- Kind: LF_STRUCTURE
Class:
MemberCount: 0
Options: [ None, ForwardReference, HasUniqueName ]
FieldList: 0
Name: Foo
UniqueName: '.?AUFoo@@'
DerivationList: 0
VTableShape: 0
Size: 0
- Kind: LF_FIELDLIST
FieldList:
- Kind: LF_MEMBER
DataMember:
Attrs: 3
Type: 116
FieldOffset: 0
Name: x
- Kind: LF_STRUCTURE
Class:
MemberCount: 1
Options: [ None, HasUniqueName ]
FieldList: 4171
Name: Foo
UniqueName: '.?AUFoo@@'
DerivationList: 0
VTableShape: 0
Size: 4
...
|