This file is indexed.

/usr/include/wine/windows/wmiutils.h is in wine1.6-dev 1:1.6.2-0ubuntu14.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
/*** Autogenerated by WIDL 1.6.2 from wmiutils.idl - Do not edit ***/

#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif

#include <rpc.h>
#include <rpcndr.h>

#ifndef COM_NO_WINDOWS_H
#include <windows.h>
#include <ole2.h>
#endif

#ifndef __wmiutils_h__
#define __wmiutils_h__

/* Forward declarations */

#ifndef __IWbemPathKeyList_FWD_DEFINED__
#define __IWbemPathKeyList_FWD_DEFINED__
typedef interface IWbemPathKeyList IWbemPathKeyList;
#endif

#ifndef __IWbemPath_FWD_DEFINED__
#define __IWbemPath_FWD_DEFINED__
typedef interface IWbemPath IWbemPath;
#endif

#ifndef __WbemDefPath_FWD_DEFINED__
#define __WbemDefPath_FWD_DEFINED__
#ifdef __cplusplus
typedef class WbemDefPath WbemDefPath;
#else
typedef struct WbemDefPath WbemDefPath;
#endif /* defined __cplusplus */
#endif /* defined __WbemDefPath_FWD_DEFINED__ */

/* Headers for imported files */

#include <oaidl.h>

#ifdef __cplusplus
extern "C" {
#endif

#ifndef __IWbemPath_FWD_DEFINED__
#define __IWbemPath_FWD_DEFINED__
typedef interface IWbemPath IWbemPath;
#endif

#ifndef __IWbemPathKeyList_FWD_DEFINED__
#define __IWbemPathKeyList_FWD_DEFINED__
typedef interface IWbemPathKeyList IWbemPathKeyList;
#endif

typedef enum tag_WBEM_PATH_STATUS_FLAG {
    WBEMPATH_INFO_ANON_LOCAL_MACHINE = 0x1,
    WBEMPATH_INFO_HAS_MACHINE_NAME = 0x2,
    WBEMPATH_INFO_IS_CLASS_REF = 0x4,
    WBEMPATH_INFO_IS_INST_REF = 0x8,
    WBEMPATH_INFO_HAS_SUBSCOPES = 0x10,
    WBEMPATH_INFO_IS_COMPOUND = 0x20,
    WBEMPATH_INFO_HAS_V2_REF_PATHS = 0x40,
    WBEMPATH_INFO_HAS_IMPLIED_KEY = 0x80,
    WBEMPATH_INFO_CONTAINS_SINGLETON = 0x100,
    WBEMPATH_INFO_V1_COMPLIANT = 0x200,
    WBEMPATH_INFO_V2_COMPLIANT = 0x400,
    WBEMPATH_INFO_CIM_COMPLIANT = 0x800,
    WBEMPATH_INFO_IS_SINGLETON = 0x1000,
    WBEMPATH_INFO_IS_PARENT = 0x2000,
    WBEMPATH_INFO_SERVER_NAMESPACE_ONLY = 0x4000,
    WBEMPATH_INFO_NATIVE_PATH = 0x8000,
    WBEMPATH_INFO_WMI_PATH = 0x10000,
    WBEMPATH_INFO_PATH_HAD_SERVER = 0x20000
} tag_WBEM_PATH_STATUS_FLAG;
typedef enum tag_WBEM_PATH_CREATE_FLAG {
    WBEMPATH_CREATE_ACCEPT_RELATIVE = 0x1,
    WBEMPATH_CREATE_ACCEPT_ABSOLUTE = 0x2,
    WBEMPATH_CREATE_ACCEPT_ALL = 0x4,
    WBEMPATH_TREAT_SINGLE_IDENT_AS_NS = 0x8
} tag_WBEM_PATH_CREATE_FLAG;
typedef enum tag_WBEM_GET_TEXT_FLAGS {
    WBEMPATH_COMPRESSED = 0x1,
    WBEMPATH_GET_RELATIVE_ONLY = 0x2,
    WBEMPATH_GET_SERVER_TOO = 0x4,
    WBEMPATH_GET_SERVER_AND_NAMESPACE_ONLY = 0x8,
    WBEMPATH_GET_NAMESPACE_ONLY = 0x10,
    WBEMPATH_GET_ORIGINAL = 0x20
} tag_WBEM_GET_TEXT_FLAGS;
/*****************************************************************************
 * IWbemPathKeyList interface
 */
#ifndef __IWbemPathKeyList_INTERFACE_DEFINED__
#define __IWbemPathKeyList_INTERFACE_DEFINED__

DEFINE_GUID(IID_IWbemPathKeyList, 0x9ae62877, 0x7544, 0x4bb0, 0xaa,0x26, 0xa1,0x38,0x24,0x65,0x9e,0xd6);
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("9ae62877-7544-4bb0-aa26-a13824659ed6")
IWbemPathKeyList : public IUnknown
{
    virtual HRESULT STDMETHODCALLTYPE GetCount(
        ULONG *puKeyCount) = 0;

    virtual HRESULT STDMETHODCALLTYPE SetKey(
        LPCWSTR wszName,
        ULONG uFlags,
        ULONG uCimType,
        LPVOID pKeyVal) = 0;

    virtual HRESULT STDMETHODCALLTYPE SetKey2(
        LPCWSTR wszName,
        ULONG uFlags,
        ULONG uCimType,
        VARIANT *pKeyVal) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetKey(
        ULONG uKeyIx,
        ULONG uFlags,
        ULONG *puNameBufSize,
        LPWSTR pszKeyName,
        ULONG *puKeyValBufSize,
        LPVOID pKeyVal,
        ULONG *puApparentCimType) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetKey2(
        ULONG uKeyIx,
        ULONG uFlags,
        ULONG *puNameBufSize,
        LPWSTR pszKeyName,
        VARIANT *pKeyValue,
        ULONG *puApparentCimType) = 0;

    virtual HRESULT STDMETHODCALLTYPE RemoveKey(
        LPCWSTR wszName,
        ULONG uFlags) = 0;

    virtual HRESULT STDMETHODCALLTYPE RemoveAllKeys(
        ULONG uFlags) = 0;

    virtual HRESULT STDMETHODCALLTYPE MakeSingleton(
        boolean bSet) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetInfo(
        ULONG uRequestedInfo,
        ULONGLONG *puResponse) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetText(
        LONG lFlags,
        ULONG *puBuffLength,
        LPWSTR pszText) = 0;

};
#ifdef __CRT_UUID_DECL
__CRT_UUID_DECL(IWbemPathKeyList, 0x9ae62877, 0x7544, 0x4bb0, 0xaa,0x26, 0xa1,0x38,0x24,0x65,0x9e,0xd6)
#endif
#else
typedef struct IWbemPathKeyListVtbl {
    BEGIN_INTERFACE

    /*** IUnknown methods ***/
    HRESULT (STDMETHODCALLTYPE *QueryInterface)(
        IWbemPathKeyList* This,
        REFIID riid,
        void **ppvObject);

    ULONG (STDMETHODCALLTYPE *AddRef)(
        IWbemPathKeyList* This);

    ULONG (STDMETHODCALLTYPE *Release)(
        IWbemPathKeyList* This);

    /*** IWbemPathKeyList methods ***/
    HRESULT (STDMETHODCALLTYPE *GetCount)(
        IWbemPathKeyList* This,
        ULONG *puKeyCount);

    HRESULT (STDMETHODCALLTYPE *SetKey)(
        IWbemPathKeyList* This,
        LPCWSTR wszName,
        ULONG uFlags,
        ULONG uCimType,
        LPVOID pKeyVal);

    HRESULT (STDMETHODCALLTYPE *SetKey2)(
        IWbemPathKeyList* This,
        LPCWSTR wszName,
        ULONG uFlags,
        ULONG uCimType,
        VARIANT *pKeyVal);

    HRESULT (STDMETHODCALLTYPE *GetKey)(
        IWbemPathKeyList* This,
        ULONG uKeyIx,
        ULONG uFlags,
        ULONG *puNameBufSize,
        LPWSTR pszKeyName,
        ULONG *puKeyValBufSize,
        LPVOID pKeyVal,
        ULONG *puApparentCimType);

    HRESULT (STDMETHODCALLTYPE *GetKey2)(
        IWbemPathKeyList* This,
        ULONG uKeyIx,
        ULONG uFlags,
        ULONG *puNameBufSize,
        LPWSTR pszKeyName,
        VARIANT *pKeyValue,
        ULONG *puApparentCimType);

    HRESULT (STDMETHODCALLTYPE *RemoveKey)(
        IWbemPathKeyList* This,
        LPCWSTR wszName,
        ULONG uFlags);

    HRESULT (STDMETHODCALLTYPE *RemoveAllKeys)(
        IWbemPathKeyList* This,
        ULONG uFlags);

    HRESULT (STDMETHODCALLTYPE *MakeSingleton)(
        IWbemPathKeyList* This,
        boolean bSet);

    HRESULT (STDMETHODCALLTYPE *GetInfo)(
        IWbemPathKeyList* This,
        ULONG uRequestedInfo,
        ULONGLONG *puResponse);

    HRESULT (STDMETHODCALLTYPE *GetText)(
        IWbemPathKeyList* This,
        LONG lFlags,
        ULONG *puBuffLength,
        LPWSTR pszText);

    END_INTERFACE
} IWbemPathKeyListVtbl;
interface IWbemPathKeyList {
    CONST_VTBL IWbemPathKeyListVtbl* lpVtbl;
};

#ifdef COBJMACROS
#ifndef WIDL_C_INLINE_WRAPPERS
/*** IUnknown methods ***/
#define IWbemPathKeyList_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
#define IWbemPathKeyList_AddRef(This) (This)->lpVtbl->AddRef(This)
#define IWbemPathKeyList_Release(This) (This)->lpVtbl->Release(This)
/*** IWbemPathKeyList methods ***/
#define IWbemPathKeyList_GetCount(This,puKeyCount) (This)->lpVtbl->GetCount(This,puKeyCount)
#define IWbemPathKeyList_SetKey(This,wszName,uFlags,uCimType,pKeyVal) (This)->lpVtbl->SetKey(This,wszName,uFlags,uCimType,pKeyVal)
#define IWbemPathKeyList_SetKey2(This,wszName,uFlags,uCimType,pKeyVal) (This)->lpVtbl->SetKey2(This,wszName,uFlags,uCimType,pKeyVal)
#define IWbemPathKeyList_GetKey(This,uKeyIx,uFlags,puNameBufSize,pszKeyName,puKeyValBufSize,pKeyVal,puApparentCimType) (This)->lpVtbl->GetKey(This,uKeyIx,uFlags,puNameBufSize,pszKeyName,puKeyValBufSize,pKeyVal,puApparentCimType)
#define IWbemPathKeyList_GetKey2(This,uKeyIx,uFlags,puNameBufSize,pszKeyName,pKeyValue,puApparentCimType) (This)->lpVtbl->GetKey2(This,uKeyIx,uFlags,puNameBufSize,pszKeyName,pKeyValue,puApparentCimType)
#define IWbemPathKeyList_RemoveKey(This,wszName,uFlags) (This)->lpVtbl->RemoveKey(This,wszName,uFlags)
#define IWbemPathKeyList_RemoveAllKeys(This,uFlags) (This)->lpVtbl->RemoveAllKeys(This,uFlags)
#define IWbemPathKeyList_MakeSingleton(This,bSet) (This)->lpVtbl->MakeSingleton(This,bSet)
#define IWbemPathKeyList_GetInfo(This,uRequestedInfo,puResponse) (This)->lpVtbl->GetInfo(This,uRequestedInfo,puResponse)
#define IWbemPathKeyList_GetText(This,lFlags,puBuffLength,pszText) (This)->lpVtbl->GetText(This,lFlags,puBuffLength,pszText)
#else
/*** IUnknown methods ***/
static FORCEINLINE HRESULT IWbemPathKeyList_QueryInterface(IWbemPathKeyList* This,REFIID riid,void **ppvObject) {
    return This->lpVtbl->QueryInterface(This,riid,ppvObject);
}
static FORCEINLINE ULONG IWbemPathKeyList_AddRef(IWbemPathKeyList* This) {
    return This->lpVtbl->AddRef(This);
}
static FORCEINLINE ULONG IWbemPathKeyList_Release(IWbemPathKeyList* This) {
    return This->lpVtbl->Release(This);
}
/*** IWbemPathKeyList methods ***/
static FORCEINLINE HRESULT IWbemPathKeyList_GetCount(IWbemPathKeyList* This,ULONG *puKeyCount) {
    return This->lpVtbl->GetCount(This,puKeyCount);
}
static FORCEINLINE HRESULT IWbemPathKeyList_SetKey(IWbemPathKeyList* This,LPCWSTR wszName,ULONG uFlags,ULONG uCimType,LPVOID pKeyVal) {
    return This->lpVtbl->SetKey(This,wszName,uFlags,uCimType,pKeyVal);
}
static FORCEINLINE HRESULT IWbemPathKeyList_SetKey2(IWbemPathKeyList* This,LPCWSTR wszName,ULONG uFlags,ULONG uCimType,VARIANT *pKeyVal) {
    return This->lpVtbl->SetKey2(This,wszName,uFlags,uCimType,pKeyVal);
}
static FORCEINLINE HRESULT IWbemPathKeyList_GetKey(IWbemPathKeyList* This,ULONG uKeyIx,ULONG uFlags,ULONG *puNameBufSize,LPWSTR pszKeyName,ULONG *puKeyValBufSize,LPVOID pKeyVal,ULONG *puApparentCimType) {
    return This->lpVtbl->GetKey(This,uKeyIx,uFlags,puNameBufSize,pszKeyName,puKeyValBufSize,pKeyVal,puApparentCimType);
}
static FORCEINLINE HRESULT IWbemPathKeyList_GetKey2(IWbemPathKeyList* This,ULONG uKeyIx,ULONG uFlags,ULONG *puNameBufSize,LPWSTR pszKeyName,VARIANT *pKeyValue,ULONG *puApparentCimType) {
    return This->lpVtbl->GetKey2(This,uKeyIx,uFlags,puNameBufSize,pszKeyName,pKeyValue,puApparentCimType);
}
static FORCEINLINE HRESULT IWbemPathKeyList_RemoveKey(IWbemPathKeyList* This,LPCWSTR wszName,ULONG uFlags) {
    return This->lpVtbl->RemoveKey(This,wszName,uFlags);
}
static FORCEINLINE HRESULT IWbemPathKeyList_RemoveAllKeys(IWbemPathKeyList* This,ULONG uFlags) {
    return This->lpVtbl->RemoveAllKeys(This,uFlags);
}
static FORCEINLINE HRESULT IWbemPathKeyList_MakeSingleton(IWbemPathKeyList* This,boolean bSet) {
    return This->lpVtbl->MakeSingleton(This,bSet);
}
static FORCEINLINE HRESULT IWbemPathKeyList_GetInfo(IWbemPathKeyList* This,ULONG uRequestedInfo,ULONGLONG *puResponse) {
    return This->lpVtbl->GetInfo(This,uRequestedInfo,puResponse);
}
static FORCEINLINE HRESULT IWbemPathKeyList_GetText(IWbemPathKeyList* This,LONG lFlags,ULONG *puBuffLength,LPWSTR pszText) {
    return This->lpVtbl->GetText(This,lFlags,puBuffLength,pszText);
}
#endif
#endif

#endif

HRESULT STDMETHODCALLTYPE IWbemPathKeyList_GetCount_Proxy(
    IWbemPathKeyList* This,
    ULONG *puKeyCount);
void __RPC_STUB IWbemPathKeyList_GetCount_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_SetKey_Proxy(
    IWbemPathKeyList* This,
    LPCWSTR wszName,
    ULONG uFlags,
    ULONG uCimType,
    LPVOID pKeyVal);
void __RPC_STUB IWbemPathKeyList_SetKey_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_SetKey2_Proxy(
    IWbemPathKeyList* This,
    LPCWSTR wszName,
    ULONG uFlags,
    ULONG uCimType,
    VARIANT *pKeyVal);
void __RPC_STUB IWbemPathKeyList_SetKey2_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_GetKey_Proxy(
    IWbemPathKeyList* This,
    ULONG uKeyIx,
    ULONG uFlags,
    ULONG *puNameBufSize,
    LPWSTR pszKeyName,
    ULONG *puKeyValBufSize,
    LPVOID pKeyVal,
    ULONG *puApparentCimType);
void __RPC_STUB IWbemPathKeyList_GetKey_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_GetKey2_Proxy(
    IWbemPathKeyList* This,
    ULONG uKeyIx,
    ULONG uFlags,
    ULONG *puNameBufSize,
    LPWSTR pszKeyName,
    VARIANT *pKeyValue,
    ULONG *puApparentCimType);
void __RPC_STUB IWbemPathKeyList_GetKey2_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_RemoveKey_Proxy(
    IWbemPathKeyList* This,
    LPCWSTR wszName,
    ULONG uFlags);
void __RPC_STUB IWbemPathKeyList_RemoveKey_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_RemoveAllKeys_Proxy(
    IWbemPathKeyList* This,
    ULONG uFlags);
void __RPC_STUB IWbemPathKeyList_RemoveAllKeys_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_MakeSingleton_Proxy(
    IWbemPathKeyList* This,
    boolean bSet);
void __RPC_STUB IWbemPathKeyList_MakeSingleton_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_GetInfo_Proxy(
    IWbemPathKeyList* This,
    ULONG uRequestedInfo,
    ULONGLONG *puResponse);
void __RPC_STUB IWbemPathKeyList_GetInfo_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPathKeyList_GetText_Proxy(
    IWbemPathKeyList* This,
    LONG lFlags,
    ULONG *puBuffLength,
    LPWSTR pszText);
void __RPC_STUB IWbemPathKeyList_GetText_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);

#endif  /* __IWbemPathKeyList_INTERFACE_DEFINED__ */

#ifdef WINE_NO_UNICODE_MACROS
#undef GetClassName
#endif
/*****************************************************************************
 * IWbemPath interface
 */
#ifndef __IWbemPath_INTERFACE_DEFINED__
#define __IWbemPath_INTERFACE_DEFINED__

DEFINE_GUID(IID_IWbemPath, 0x3bc15af2, 0x736c, 0x477e, 0x9e,0x51, 0x23,0x8a,0xf8,0x66,0x7d,0xcc);
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("3bc15af2-736c-477e-9e51-238af8667dcc")
IWbemPath : public IUnknown
{
    virtual HRESULT STDMETHODCALLTYPE SetText(
        ULONG uMode,
        LPCWSTR pszPath) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetText(
        LONG lFlags,
        ULONG *puBuffLength,
        LPWSTR pszText) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetInfo(
        ULONG uRequestedInfo,
        ULONGLONG *puResponse) = 0;

    virtual HRESULT STDMETHODCALLTYPE SetServer(
        LPCWSTR Name) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetServer(
        ULONG *puNameBufLength,
        LPWSTR pName) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetNamespaceCount(
        ULONG *puCount) = 0;

    virtual HRESULT STDMETHODCALLTYPE SetNamespaceAt(
        ULONG uIndex,
        LPCWSTR pszName) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetNamespaceAt(
        ULONG uIndex,
        ULONG *puNameBufLength,
        LPWSTR pName) = 0;

    virtual HRESULT STDMETHODCALLTYPE RemoveNamespaceAt(
        ULONG uIndex) = 0;

    virtual HRESULT STDMETHODCALLTYPE RemoveAllNamespaces(
        ) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetScopeCount(
        ULONG *puCount) = 0;

    virtual HRESULT STDMETHODCALLTYPE SetScope(
        ULONG uIndex,
        LPWSTR pszClass) = 0;

    virtual HRESULT STDMETHODCALLTYPE SetScopeFromText(
        ULONG uIndex,
        LPWSTR pszText) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetScope(
        ULONG uIndex,
        ULONG *puClassNameBufSize,
        LPWSTR pszClass,
        IWbemPathKeyList **pKeyList) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetScopeAsText(
        ULONG uIndex,
        ULONG *puTextBufSize,
        LPWSTR pszText) = 0;

    virtual HRESULT STDMETHODCALLTYPE RemoveScope(
        ULONG uIndex) = 0;

    virtual HRESULT STDMETHODCALLTYPE RemoveAllScopes(
        ) = 0;

    virtual HRESULT STDMETHODCALLTYPE SetClassName(
        LPCWSTR Name) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetClassName(
        ULONG *puBuffLength,
        LPWSTR pszName) = 0;

    virtual HRESULT STDMETHODCALLTYPE GetKeyList(
        IWbemPathKeyList **pOut) = 0;

    virtual HRESULT STDMETHODCALLTYPE CreateClassPart(
        LONG lFlags,
        LPCWSTR Name) = 0;

    virtual HRESULT STDMETHODCALLTYPE DeleteClassPart(
        LONG lFlags) = 0;

    virtual BOOL STDMETHODCALLTYPE IsRelative(
        LPWSTR wszMachine,
        LPWSTR wszNamespace) = 0;

    virtual BOOL STDMETHODCALLTYPE IsRelativeOrChild(
        LPWSTR wszMachine,
        LPWSTR wszNamespace,
        LONG lFlags) = 0;

    virtual BOOL STDMETHODCALLTYPE IsLocal(
        LPCWSTR wszMachine) = 0;

    virtual BOOL STDMETHODCALLTYPE IsSameClassName(
        LPCWSTR wszClass) = 0;

};
#ifdef __CRT_UUID_DECL
__CRT_UUID_DECL(IWbemPath, 0x3bc15af2, 0x736c, 0x477e, 0x9e,0x51, 0x23,0x8a,0xf8,0x66,0x7d,0xcc)
#endif
#else
typedef struct IWbemPathVtbl {
    BEGIN_INTERFACE

    /*** IUnknown methods ***/
    HRESULT (STDMETHODCALLTYPE *QueryInterface)(
        IWbemPath* This,
        REFIID riid,
        void **ppvObject);

    ULONG (STDMETHODCALLTYPE *AddRef)(
        IWbemPath* This);

    ULONG (STDMETHODCALLTYPE *Release)(
        IWbemPath* This);

    /*** IWbemPath methods ***/
    HRESULT (STDMETHODCALLTYPE *SetText)(
        IWbemPath* This,
        ULONG uMode,
        LPCWSTR pszPath);

    HRESULT (STDMETHODCALLTYPE *GetText)(
        IWbemPath* This,
        LONG lFlags,
        ULONG *puBuffLength,
        LPWSTR pszText);

    HRESULT (STDMETHODCALLTYPE *GetInfo)(
        IWbemPath* This,
        ULONG uRequestedInfo,
        ULONGLONG *puResponse);

    HRESULT (STDMETHODCALLTYPE *SetServer)(
        IWbemPath* This,
        LPCWSTR Name);

    HRESULT (STDMETHODCALLTYPE *GetServer)(
        IWbemPath* This,
        ULONG *puNameBufLength,
        LPWSTR pName);

    HRESULT (STDMETHODCALLTYPE *GetNamespaceCount)(
        IWbemPath* This,
        ULONG *puCount);

    HRESULT (STDMETHODCALLTYPE *SetNamespaceAt)(
        IWbemPath* This,
        ULONG uIndex,
        LPCWSTR pszName);

    HRESULT (STDMETHODCALLTYPE *GetNamespaceAt)(
        IWbemPath* This,
        ULONG uIndex,
        ULONG *puNameBufLength,
        LPWSTR pName);

    HRESULT (STDMETHODCALLTYPE *RemoveNamespaceAt)(
        IWbemPath* This,
        ULONG uIndex);

    HRESULT (STDMETHODCALLTYPE *RemoveAllNamespaces)(
        IWbemPath* This);

    HRESULT (STDMETHODCALLTYPE *GetScopeCount)(
        IWbemPath* This,
        ULONG *puCount);

    HRESULT (STDMETHODCALLTYPE *SetScope)(
        IWbemPath* This,
        ULONG uIndex,
        LPWSTR pszClass);

    HRESULT (STDMETHODCALLTYPE *SetScopeFromText)(
        IWbemPath* This,
        ULONG uIndex,
        LPWSTR pszText);

    HRESULT (STDMETHODCALLTYPE *GetScope)(
        IWbemPath* This,
        ULONG uIndex,
        ULONG *puClassNameBufSize,
        LPWSTR pszClass,
        IWbemPathKeyList **pKeyList);

    HRESULT (STDMETHODCALLTYPE *GetScopeAsText)(
        IWbemPath* This,
        ULONG uIndex,
        ULONG *puTextBufSize,
        LPWSTR pszText);

    HRESULT (STDMETHODCALLTYPE *RemoveScope)(
        IWbemPath* This,
        ULONG uIndex);

    HRESULT (STDMETHODCALLTYPE *RemoveAllScopes)(
        IWbemPath* This);

    HRESULT (STDMETHODCALLTYPE *SetClassName)(
        IWbemPath* This,
        LPCWSTR Name);

    HRESULT (STDMETHODCALLTYPE *GetClassName)(
        IWbemPath* This,
        ULONG *puBuffLength,
        LPWSTR pszName);

    HRESULT (STDMETHODCALLTYPE *GetKeyList)(
        IWbemPath* This,
        IWbemPathKeyList **pOut);

    HRESULT (STDMETHODCALLTYPE *CreateClassPart)(
        IWbemPath* This,
        LONG lFlags,
        LPCWSTR Name);

    HRESULT (STDMETHODCALLTYPE *DeleteClassPart)(
        IWbemPath* This,
        LONG lFlags);

    BOOL (STDMETHODCALLTYPE *IsRelative)(
        IWbemPath* This,
        LPWSTR wszMachine,
        LPWSTR wszNamespace);

    BOOL (STDMETHODCALLTYPE *IsRelativeOrChild)(
        IWbemPath* This,
        LPWSTR wszMachine,
        LPWSTR wszNamespace,
        LONG lFlags);

    BOOL (STDMETHODCALLTYPE *IsLocal)(
        IWbemPath* This,
        LPCWSTR wszMachine);

    BOOL (STDMETHODCALLTYPE *IsSameClassName)(
        IWbemPath* This,
        LPCWSTR wszClass);

    END_INTERFACE
} IWbemPathVtbl;
interface IWbemPath {
    CONST_VTBL IWbemPathVtbl* lpVtbl;
};

#ifdef COBJMACROS
#ifndef WIDL_C_INLINE_WRAPPERS
/*** IUnknown methods ***/
#define IWbemPath_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
#define IWbemPath_AddRef(This) (This)->lpVtbl->AddRef(This)
#define IWbemPath_Release(This) (This)->lpVtbl->Release(This)
/*** IWbemPath methods ***/
#define IWbemPath_SetText(This,uMode,pszPath) (This)->lpVtbl->SetText(This,uMode,pszPath)
#define IWbemPath_GetText(This,lFlags,puBuffLength,pszText) (This)->lpVtbl->GetText(This,lFlags,puBuffLength,pszText)
#define IWbemPath_GetInfo(This,uRequestedInfo,puResponse) (This)->lpVtbl->GetInfo(This,uRequestedInfo,puResponse)
#define IWbemPath_SetServer(This,Name) (This)->lpVtbl->SetServer(This,Name)
#define IWbemPath_GetServer(This,puNameBufLength,pName) (This)->lpVtbl->GetServer(This,puNameBufLength,pName)
#define IWbemPath_GetNamespaceCount(This,puCount) (This)->lpVtbl->GetNamespaceCount(This,puCount)
#define IWbemPath_SetNamespaceAt(This,uIndex,pszName) (This)->lpVtbl->SetNamespaceAt(This,uIndex,pszName)
#define IWbemPath_GetNamespaceAt(This,uIndex,puNameBufLength,pName) (This)->lpVtbl->GetNamespaceAt(This,uIndex,puNameBufLength,pName)
#define IWbemPath_RemoveNamespaceAt(This,uIndex) (This)->lpVtbl->RemoveNamespaceAt(This,uIndex)
#define IWbemPath_RemoveAllNamespaces(This) (This)->lpVtbl->RemoveAllNamespaces(This)
#define IWbemPath_GetScopeCount(This,puCount) (This)->lpVtbl->GetScopeCount(This,puCount)
#define IWbemPath_SetScope(This,uIndex,pszClass) (This)->lpVtbl->SetScope(This,uIndex,pszClass)
#define IWbemPath_SetScopeFromText(This,uIndex,pszText) (This)->lpVtbl->SetScopeFromText(This,uIndex,pszText)
#define IWbemPath_GetScope(This,uIndex,puClassNameBufSize,pszClass,pKeyList) (This)->lpVtbl->GetScope(This,uIndex,puClassNameBufSize,pszClass,pKeyList)
#define IWbemPath_GetScopeAsText(This,uIndex,puTextBufSize,pszText) (This)->lpVtbl->GetScopeAsText(This,uIndex,puTextBufSize,pszText)
#define IWbemPath_RemoveScope(This,uIndex) (This)->lpVtbl->RemoveScope(This,uIndex)
#define IWbemPath_RemoveAllScopes(This) (This)->lpVtbl->RemoveAllScopes(This)
#define IWbemPath_SetClassName(This,Name) (This)->lpVtbl->SetClassName(This,Name)
#define IWbemPath_GetClassName(This,puBuffLength,pszName) (This)->lpVtbl->GetClassName(This,puBuffLength,pszName)
#define IWbemPath_GetKeyList(This,pOut) (This)->lpVtbl->GetKeyList(This,pOut)
#define IWbemPath_CreateClassPart(This,lFlags,Name) (This)->lpVtbl->CreateClassPart(This,lFlags,Name)
#define IWbemPath_DeleteClassPart(This,lFlags) (This)->lpVtbl->DeleteClassPart(This,lFlags)
#define IWbemPath_IsRelative(This,wszMachine,wszNamespace) (This)->lpVtbl->IsRelative(This,wszMachine,wszNamespace)
#define IWbemPath_IsRelativeOrChild(This,wszMachine,wszNamespace,lFlags) (This)->lpVtbl->IsRelativeOrChild(This,wszMachine,wszNamespace,lFlags)
#define IWbemPath_IsLocal(This,wszMachine) (This)->lpVtbl->IsLocal(This,wszMachine)
#define IWbemPath_IsSameClassName(This,wszClass) (This)->lpVtbl->IsSameClassName(This,wszClass)
#else
/*** IUnknown methods ***/
static FORCEINLINE HRESULT IWbemPath_QueryInterface(IWbemPath* This,REFIID riid,void **ppvObject) {
    return This->lpVtbl->QueryInterface(This,riid,ppvObject);
}
static FORCEINLINE ULONG IWbemPath_AddRef(IWbemPath* This) {
    return This->lpVtbl->AddRef(This);
}
static FORCEINLINE ULONG IWbemPath_Release(IWbemPath* This) {
    return This->lpVtbl->Release(This);
}
/*** IWbemPath methods ***/
static FORCEINLINE HRESULT IWbemPath_SetText(IWbemPath* This,ULONG uMode,LPCWSTR pszPath) {
    return This->lpVtbl->SetText(This,uMode,pszPath);
}
static FORCEINLINE HRESULT IWbemPath_GetText(IWbemPath* This,LONG lFlags,ULONG *puBuffLength,LPWSTR pszText) {
    return This->lpVtbl->GetText(This,lFlags,puBuffLength,pszText);
}
static FORCEINLINE HRESULT IWbemPath_GetInfo(IWbemPath* This,ULONG uRequestedInfo,ULONGLONG *puResponse) {
    return This->lpVtbl->GetInfo(This,uRequestedInfo,puResponse);
}
static FORCEINLINE HRESULT IWbemPath_SetServer(IWbemPath* This,LPCWSTR Name) {
    return This->lpVtbl->SetServer(This,Name);
}
static FORCEINLINE HRESULT IWbemPath_GetServer(IWbemPath* This,ULONG *puNameBufLength,LPWSTR pName) {
    return This->lpVtbl->GetServer(This,puNameBufLength,pName);
}
static FORCEINLINE HRESULT IWbemPath_GetNamespaceCount(IWbemPath* This,ULONG *puCount) {
    return This->lpVtbl->GetNamespaceCount(This,puCount);
}
static FORCEINLINE HRESULT IWbemPath_SetNamespaceAt(IWbemPath* This,ULONG uIndex,LPCWSTR pszName) {
    return This->lpVtbl->SetNamespaceAt(This,uIndex,pszName);
}
static FORCEINLINE HRESULT IWbemPath_GetNamespaceAt(IWbemPath* This,ULONG uIndex,ULONG *puNameBufLength,LPWSTR pName) {
    return This->lpVtbl->GetNamespaceAt(This,uIndex,puNameBufLength,pName);
}
static FORCEINLINE HRESULT IWbemPath_RemoveNamespaceAt(IWbemPath* This,ULONG uIndex) {
    return This->lpVtbl->RemoveNamespaceAt(This,uIndex);
}
static FORCEINLINE HRESULT IWbemPath_RemoveAllNamespaces(IWbemPath* This) {
    return This->lpVtbl->RemoveAllNamespaces(This);
}
static FORCEINLINE HRESULT IWbemPath_GetScopeCount(IWbemPath* This,ULONG *puCount) {
    return This->lpVtbl->GetScopeCount(This,puCount);
}
static FORCEINLINE HRESULT IWbemPath_SetScope(IWbemPath* This,ULONG uIndex,LPWSTR pszClass) {
    return This->lpVtbl->SetScope(This,uIndex,pszClass);
}
static FORCEINLINE HRESULT IWbemPath_SetScopeFromText(IWbemPath* This,ULONG uIndex,LPWSTR pszText) {
    return This->lpVtbl->SetScopeFromText(This,uIndex,pszText);
}
static FORCEINLINE HRESULT IWbemPath_GetScope(IWbemPath* This,ULONG uIndex,ULONG *puClassNameBufSize,LPWSTR pszClass,IWbemPathKeyList **pKeyList) {
    return This->lpVtbl->GetScope(This,uIndex,puClassNameBufSize,pszClass,pKeyList);
}
static FORCEINLINE HRESULT IWbemPath_GetScopeAsText(IWbemPath* This,ULONG uIndex,ULONG *puTextBufSize,LPWSTR pszText) {
    return This->lpVtbl->GetScopeAsText(This,uIndex,puTextBufSize,pszText);
}
static FORCEINLINE HRESULT IWbemPath_RemoveScope(IWbemPath* This,ULONG uIndex) {
    return This->lpVtbl->RemoveScope(This,uIndex);
}
static FORCEINLINE HRESULT IWbemPath_RemoveAllScopes(IWbemPath* This) {
    return This->lpVtbl->RemoveAllScopes(This);
}
static FORCEINLINE HRESULT IWbemPath_SetClassName(IWbemPath* This,LPCWSTR Name) {
    return This->lpVtbl->SetClassName(This,Name);
}
static FORCEINLINE HRESULT IWbemPath_GetClassName(IWbemPath* This,ULONG *puBuffLength,LPWSTR pszName) {
    return This->lpVtbl->GetClassName(This,puBuffLength,pszName);
}
static FORCEINLINE HRESULT IWbemPath_GetKeyList(IWbemPath* This,IWbemPathKeyList **pOut) {
    return This->lpVtbl->GetKeyList(This,pOut);
}
static FORCEINLINE HRESULT IWbemPath_CreateClassPart(IWbemPath* This,LONG lFlags,LPCWSTR Name) {
    return This->lpVtbl->CreateClassPart(This,lFlags,Name);
}
static FORCEINLINE HRESULT IWbemPath_DeleteClassPart(IWbemPath* This,LONG lFlags) {
    return This->lpVtbl->DeleteClassPart(This,lFlags);
}
static FORCEINLINE BOOL IWbemPath_IsRelative(IWbemPath* This,LPWSTR wszMachine,LPWSTR wszNamespace) {
    return This->lpVtbl->IsRelative(This,wszMachine,wszNamespace);
}
static FORCEINLINE BOOL IWbemPath_IsRelativeOrChild(IWbemPath* This,LPWSTR wszMachine,LPWSTR wszNamespace,LONG lFlags) {
    return This->lpVtbl->IsRelativeOrChild(This,wszMachine,wszNamespace,lFlags);
}
static FORCEINLINE BOOL IWbemPath_IsLocal(IWbemPath* This,LPCWSTR wszMachine) {
    return This->lpVtbl->IsLocal(This,wszMachine);
}
static FORCEINLINE BOOL IWbemPath_IsSameClassName(IWbemPath* This,LPCWSTR wszClass) {
    return This->lpVtbl->IsSameClassName(This,wszClass);
}
#endif
#endif

#endif

HRESULT STDMETHODCALLTYPE IWbemPath_SetText_Proxy(
    IWbemPath* This,
    ULONG uMode,
    LPCWSTR pszPath);
void __RPC_STUB IWbemPath_SetText_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetText_Proxy(
    IWbemPath* This,
    LONG lFlags,
    ULONG *puBuffLength,
    LPWSTR pszText);
void __RPC_STUB IWbemPath_GetText_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetInfo_Proxy(
    IWbemPath* This,
    ULONG uRequestedInfo,
    ULONGLONG *puResponse);
void __RPC_STUB IWbemPath_GetInfo_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_SetServer_Proxy(
    IWbemPath* This,
    LPCWSTR Name);
void __RPC_STUB IWbemPath_SetServer_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetServer_Proxy(
    IWbemPath* This,
    ULONG *puNameBufLength,
    LPWSTR pName);
void __RPC_STUB IWbemPath_GetServer_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetNamespaceCount_Proxy(
    IWbemPath* This,
    ULONG *puCount);
void __RPC_STUB IWbemPath_GetNamespaceCount_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_SetNamespaceAt_Proxy(
    IWbemPath* This,
    ULONG uIndex,
    LPCWSTR pszName);
void __RPC_STUB IWbemPath_SetNamespaceAt_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetNamespaceAt_Proxy(
    IWbemPath* This,
    ULONG uIndex,
    ULONG *puNameBufLength,
    LPWSTR pName);
void __RPC_STUB IWbemPath_GetNamespaceAt_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_RemoveNamespaceAt_Proxy(
    IWbemPath* This,
    ULONG uIndex);
void __RPC_STUB IWbemPath_RemoveNamespaceAt_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_RemoveAllNamespaces_Proxy(
    IWbemPath* This);
void __RPC_STUB IWbemPath_RemoveAllNamespaces_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetScopeCount_Proxy(
    IWbemPath* This,
    ULONG *puCount);
void __RPC_STUB IWbemPath_GetScopeCount_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_SetScope_Proxy(
    IWbemPath* This,
    ULONG uIndex,
    LPWSTR pszClass);
void __RPC_STUB IWbemPath_SetScope_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_SetScopeFromText_Proxy(
    IWbemPath* This,
    ULONG uIndex,
    LPWSTR pszText);
void __RPC_STUB IWbemPath_SetScopeFromText_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetScope_Proxy(
    IWbemPath* This,
    ULONG uIndex,
    ULONG *puClassNameBufSize,
    LPWSTR pszClass,
    IWbemPathKeyList **pKeyList);
void __RPC_STUB IWbemPath_GetScope_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetScopeAsText_Proxy(
    IWbemPath* This,
    ULONG uIndex,
    ULONG *puTextBufSize,
    LPWSTR pszText);
void __RPC_STUB IWbemPath_GetScopeAsText_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_RemoveScope_Proxy(
    IWbemPath* This,
    ULONG uIndex);
void __RPC_STUB IWbemPath_RemoveScope_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_RemoveAllScopes_Proxy(
    IWbemPath* This);
void __RPC_STUB IWbemPath_RemoveAllScopes_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_SetClassName_Proxy(
    IWbemPath* This,
    LPCWSTR Name);
void __RPC_STUB IWbemPath_SetClassName_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetClassName_Proxy(
    IWbemPath* This,
    ULONG *puBuffLength,
    LPWSTR pszName);
void __RPC_STUB IWbemPath_GetClassName_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_GetKeyList_Proxy(
    IWbemPath* This,
    IWbemPathKeyList **pOut);
void __RPC_STUB IWbemPath_GetKeyList_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_CreateClassPart_Proxy(
    IWbemPath* This,
    LONG lFlags,
    LPCWSTR Name);
void __RPC_STUB IWbemPath_CreateClassPart_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IWbemPath_DeleteClassPart_Proxy(
    IWbemPath* This,
    LONG lFlags);
void __RPC_STUB IWbemPath_DeleteClassPart_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
BOOL STDMETHODCALLTYPE IWbemPath_IsRelative_Proxy(
    IWbemPath* This,
    LPWSTR wszMachine,
    LPWSTR wszNamespace);
void __RPC_STUB IWbemPath_IsRelative_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
BOOL STDMETHODCALLTYPE IWbemPath_IsRelativeOrChild_Proxy(
    IWbemPath* This,
    LPWSTR wszMachine,
    LPWSTR wszNamespace,
    LONG lFlags);
void __RPC_STUB IWbemPath_IsRelativeOrChild_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
BOOL STDMETHODCALLTYPE IWbemPath_IsLocal_Proxy(
    IWbemPath* This,
    LPCWSTR wszMachine);
void __RPC_STUB IWbemPath_IsLocal_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);
BOOL STDMETHODCALLTYPE IWbemPath_IsSameClassName_Proxy(
    IWbemPath* This,
    LPCWSTR wszClass);
void __RPC_STUB IWbemPath_IsSameClassName_Stub(
    IRpcStubBuffer* This,
    IRpcChannelBuffer* pRpcChannelBuffer,
    PRPC_MESSAGE pRpcMessage,
    DWORD* pdwStubPhase);

#endif  /* __IWbemPath_INTERFACE_DEFINED__ */

/*****************************************************************************
 * WbemDefPath coclass
 */

DEFINE_GUID(CLSID_WbemDefPath, 0xcf4cc405, 0xe2c5, 0x4ddd, 0xb3,0xce, 0x5e,0x75,0x82,0xd8,0xc9,0xfa);

#ifdef __cplusplus
class DECLSPEC_UUID("cf4cc405-e2c5-4ddd-b3ce-5e7582d8c9fa") WbemDefPath;
#ifdef __CRT_UUID_DECL
__CRT_UUID_DECL(WbemDefPath, 0xcf4cc405, 0xe2c5, 0x4ddd, 0xb3,0xce, 0x5e,0x75,0x82,0xd8,0xc9,0xfa)
#endif
#endif

/* Begin additional prototypes for all interfaces */


/* End additional prototypes */

#ifdef __cplusplus
}
#endif

#endif /* __wmiutils_h__ */