-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathNATUPnP.h
1964 lines (1323 loc) · 64 KB
/
NATUPnP.h
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
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 6.00.0361 */
/* at Thu Feb 02 11:16:31 2006
*/
/* Compiler settings for .\NATUPnP.idl:
Oicf, W1, Zp8, env=Win32 (32b run)
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
//@@MIDL_FILE_HEADING( )
#pragma warning( disable: 4049 ) /* more than 64k source lines */
/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif
#include "rpc.h"
#include "rpcndr.h"
#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif // __RPCNDR_H_VERSION__
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/
#ifndef __NATUPnP_h__
#define __NATUPnP_h__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
/* Forward Declarations */
#ifndef __IUPnPNAT_FWD_DEFINED__
#define __IUPnPNAT_FWD_DEFINED__
typedef interface IUPnPNAT IUPnPNAT;
#endif /* __IUPnPNAT_FWD_DEFINED__ */
#ifndef __INATEventManager_FWD_DEFINED__
#define __INATEventManager_FWD_DEFINED__
typedef interface INATEventManager INATEventManager;
#endif /* __INATEventManager_FWD_DEFINED__ */
#ifndef __INATExternalIPAddressCallback_FWD_DEFINED__
#define __INATExternalIPAddressCallback_FWD_DEFINED__
typedef interface INATExternalIPAddressCallback INATExternalIPAddressCallback;
#endif /* __INATExternalIPAddressCallback_FWD_DEFINED__ */
#ifndef __INATNumberOfEntriesCallback_FWD_DEFINED__
#define __INATNumberOfEntriesCallback_FWD_DEFINED__
typedef interface INATNumberOfEntriesCallback INATNumberOfEntriesCallback;
#endif /* __INATNumberOfEntriesCallback_FWD_DEFINED__ */
#ifndef __IDynamicPortMappingCollection_FWD_DEFINED__
#define __IDynamicPortMappingCollection_FWD_DEFINED__
typedef interface IDynamicPortMappingCollection IDynamicPortMappingCollection;
#endif /* __IDynamicPortMappingCollection_FWD_DEFINED__ */
#ifndef __IDynamicPortMapping_FWD_DEFINED__
#define __IDynamicPortMapping_FWD_DEFINED__
typedef interface IDynamicPortMapping IDynamicPortMapping;
#endif /* __IDynamicPortMapping_FWD_DEFINED__ */
#ifndef __IStaticPortMappingCollection_FWD_DEFINED__
#define __IStaticPortMappingCollection_FWD_DEFINED__
typedef interface IStaticPortMappingCollection IStaticPortMappingCollection;
#endif /* __IStaticPortMappingCollection_FWD_DEFINED__ */
#ifndef __IStaticPortMapping_FWD_DEFINED__
#define __IStaticPortMapping_FWD_DEFINED__
typedef interface IStaticPortMapping IStaticPortMapping;
#endif /* __IStaticPortMapping_FWD_DEFINED__ */
#ifndef __UPnPNAT_FWD_DEFINED__
#define __UPnPNAT_FWD_DEFINED__
#ifdef __cplusplus
typedef class UPnPNAT UPnPNAT;
#else
typedef struct UPnPNAT UPnPNAT;
#endif /* __cplusplus */
#endif /* __UPnPNAT_FWD_DEFINED__ */
/* header files for imported files */
#include "oaidl.h"
#include "ocidl.h"
#ifdef __cplusplus
extern "C"{
#endif
void * __RPC_USER MIDL_user_allocate(size_t);
void __RPC_USER MIDL_user_free( void * );
/* interface __MIDL_itf_NATUPnP_0000 */
/* [local] */
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992-2001.
//
//--------------------------------------------------------------------------
// MODULE: natupnp.h
//
extern RPC_IF_HANDLE __MIDL_itf_NATUPnP_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_NATUPnP_0000_v0_0_s_ifspec;
#ifndef __IUPnPNAT_INTERFACE_DEFINED__
#define __IUPnPNAT_INTERFACE_DEFINED__
/* interface IUPnPNAT */
/* [unique][helpstring][dual][uuid][object] */
EXTERN_C const IID IID_IUPnPNAT;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("B171C812-CC76-485A-94D8-B6B3A2794E99")
IUPnPNAT : public IDispatch
{
public:
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_StaticPortMappingCollection(
/* [retval][out] */ IStaticPortMappingCollection **ppSPMs) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_DynamicPortMappingCollection(
/* [retval][out] */ IDynamicPortMappingCollection **ppDPMs) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_NATEventManager(
/* [retval][out] */ INATEventManager **ppNEM) = 0;
};
#else /* C style interface */
typedef struct IUPnPNATVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IUPnPNAT * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IUPnPNAT * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IUPnPNAT * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
IUPnPNAT * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
IUPnPNAT * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
IUPnPNAT * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
IUPnPNAT * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_StaticPortMappingCollection )(
IUPnPNAT * This,
/* [retval][out] */ IStaticPortMappingCollection **ppSPMs);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_DynamicPortMappingCollection )(
IUPnPNAT * This,
/* [retval][out] */ IDynamicPortMappingCollection **ppDPMs);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_NATEventManager )(
IUPnPNAT * This,
/* [retval][out] */ INATEventManager **ppNEM);
END_INTERFACE
} IUPnPNATVtbl;
interface IUPnPNAT
{
CONST_VTBL struct IUPnPNATVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IUPnPNAT_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IUPnPNAT_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IUPnPNAT_Release(This) \
(This)->lpVtbl -> Release(This)
#define IUPnPNAT_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define IUPnPNAT_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define IUPnPNAT_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define IUPnPNAT_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define IUPnPNAT_get_StaticPortMappingCollection(This,ppSPMs) \
(This)->lpVtbl -> get_StaticPortMappingCollection(This,ppSPMs)
#define IUPnPNAT_get_DynamicPortMappingCollection(This,ppDPMs) \
(This)->lpVtbl -> get_DynamicPortMappingCollection(This,ppDPMs)
#define IUPnPNAT_get_NATEventManager(This,ppNEM) \
(This)->lpVtbl -> get_NATEventManager(This,ppNEM)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE IUPnPNAT_get_StaticPortMappingCollection_Proxy(
IUPnPNAT * This,
/* [retval][out] */ IStaticPortMappingCollection **ppSPMs);
void __RPC_STUB IUPnPNAT_get_StaticPortMappingCollection_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE IUPnPNAT_get_DynamicPortMappingCollection_Proxy(
IUPnPNAT * This,
/* [retval][out] */ IDynamicPortMappingCollection **ppDPMs);
void __RPC_STUB IUPnPNAT_get_DynamicPortMappingCollection_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE IUPnPNAT_get_NATEventManager_Proxy(
IUPnPNAT * This,
/* [retval][out] */ INATEventManager **ppNEM);
void __RPC_STUB IUPnPNAT_get_NATEventManager_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IUPnPNAT_INTERFACE_DEFINED__ */
#ifndef __INATEventManager_INTERFACE_DEFINED__
#define __INATEventManager_INTERFACE_DEFINED__
/* interface INATEventManager */
/* [unique][helpstring][dual][uuid][object] */
EXTERN_C const IID IID_INATEventManager;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("624BD588-9060-4109-B0B0-1ADBBCAC32DF")
INATEventManager : public IDispatch
{
public:
virtual /* [helpstring][propput][id] */ HRESULT STDMETHODCALLTYPE put_ExternalIPAddressCallback(
/* [in] */ IUnknown *pUnk) = 0;
virtual /* [helpstring][propput][id] */ HRESULT STDMETHODCALLTYPE put_NumberOfEntriesCallback(
/* [in] */ IUnknown *pUnk) = 0;
};
#else /* C style interface */
typedef struct INATEventManagerVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
INATEventManager * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
INATEventManager * This);
ULONG ( STDMETHODCALLTYPE *Release )(
INATEventManager * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
INATEventManager * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
INATEventManager * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
INATEventManager * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
INATEventManager * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
/* [helpstring][propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_ExternalIPAddressCallback )(
INATEventManager * This,
/* [in] */ IUnknown *pUnk);
/* [helpstring][propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_NumberOfEntriesCallback )(
INATEventManager * This,
/* [in] */ IUnknown *pUnk);
END_INTERFACE
} INATEventManagerVtbl;
interface INATEventManager
{
CONST_VTBL struct INATEventManagerVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define INATEventManager_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define INATEventManager_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define INATEventManager_Release(This) \
(This)->lpVtbl -> Release(This)
#define INATEventManager_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define INATEventManager_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define INATEventManager_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define INATEventManager_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define INATEventManager_put_ExternalIPAddressCallback(This,pUnk) \
(This)->lpVtbl -> put_ExternalIPAddressCallback(This,pUnk)
#define INATEventManager_put_NumberOfEntriesCallback(This,pUnk) \
(This)->lpVtbl -> put_NumberOfEntriesCallback(This,pUnk)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][propput][id] */ HRESULT STDMETHODCALLTYPE INATEventManager_put_ExternalIPAddressCallback_Proxy(
INATEventManager * This,
/* [in] */ IUnknown *pUnk);
void __RPC_STUB INATEventManager_put_ExternalIPAddressCallback_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][propput][id] */ HRESULT STDMETHODCALLTYPE INATEventManager_put_NumberOfEntriesCallback_Proxy(
INATEventManager * This,
/* [in] */ IUnknown *pUnk);
void __RPC_STUB INATEventManager_put_NumberOfEntriesCallback_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __INATEventManager_INTERFACE_DEFINED__ */
#ifndef __INATExternalIPAddressCallback_INTERFACE_DEFINED__
#define __INATExternalIPAddressCallback_INTERFACE_DEFINED__
/* interface INATExternalIPAddressCallback */
/* [unique][helpstring][uuid][object] */
EXTERN_C const IID IID_INATExternalIPAddressCallback;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("9C416740-A34E-446F-BA06-ABD04C3149AE")
INATExternalIPAddressCallback : public IUnknown
{
public:
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE NewExternalIPAddress(
/* [in] */ BSTR bstrNewExternalIPAddress) = 0;
};
#else /* C style interface */
typedef struct INATExternalIPAddressCallbackVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
INATExternalIPAddressCallback * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
INATExternalIPAddressCallback * This);
ULONG ( STDMETHODCALLTYPE *Release )(
INATExternalIPAddressCallback * This);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *NewExternalIPAddress )(
INATExternalIPAddressCallback * This,
/* [in] */ BSTR bstrNewExternalIPAddress);
END_INTERFACE
} INATExternalIPAddressCallbackVtbl;
interface INATExternalIPAddressCallback
{
CONST_VTBL struct INATExternalIPAddressCallbackVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define INATExternalIPAddressCallback_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define INATExternalIPAddressCallback_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define INATExternalIPAddressCallback_Release(This) \
(This)->lpVtbl -> Release(This)
#define INATExternalIPAddressCallback_NewExternalIPAddress(This,bstrNewExternalIPAddress) \
(This)->lpVtbl -> NewExternalIPAddress(This,bstrNewExternalIPAddress)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][id] */ HRESULT STDMETHODCALLTYPE INATExternalIPAddressCallback_NewExternalIPAddress_Proxy(
INATExternalIPAddressCallback * This,
/* [in] */ BSTR bstrNewExternalIPAddress);
void __RPC_STUB INATExternalIPAddressCallback_NewExternalIPAddress_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __INATExternalIPAddressCallback_INTERFACE_DEFINED__ */
#ifndef __INATNumberOfEntriesCallback_INTERFACE_DEFINED__
#define __INATNumberOfEntriesCallback_INTERFACE_DEFINED__
/* interface INATNumberOfEntriesCallback */
/* [unique][helpstring][uuid][object] */
EXTERN_C const IID IID_INATNumberOfEntriesCallback;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("C83A0A74-91EE-41B6-B67A-67E0F00BBD78")
INATNumberOfEntriesCallback : public IUnknown
{
public:
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE NewNumberOfEntries(
/* [in] */ long lNewNumberOfEntries) = 0;
};
#else /* C style interface */
typedef struct INATNumberOfEntriesCallbackVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
INATNumberOfEntriesCallback * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
INATNumberOfEntriesCallback * This);
ULONG ( STDMETHODCALLTYPE *Release )(
INATNumberOfEntriesCallback * This);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *NewNumberOfEntries )(
INATNumberOfEntriesCallback * This,
/* [in] */ long lNewNumberOfEntries);
END_INTERFACE
} INATNumberOfEntriesCallbackVtbl;
interface INATNumberOfEntriesCallback
{
CONST_VTBL struct INATNumberOfEntriesCallbackVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define INATNumberOfEntriesCallback_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define INATNumberOfEntriesCallback_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define INATNumberOfEntriesCallback_Release(This) \
(This)->lpVtbl -> Release(This)
#define INATNumberOfEntriesCallback_NewNumberOfEntries(This,lNewNumberOfEntries) \
(This)->lpVtbl -> NewNumberOfEntries(This,lNewNumberOfEntries)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][id] */ HRESULT STDMETHODCALLTYPE INATNumberOfEntriesCallback_NewNumberOfEntries_Proxy(
INATNumberOfEntriesCallback * This,
/* [in] */ long lNewNumberOfEntries);
void __RPC_STUB INATNumberOfEntriesCallback_NewNumberOfEntries_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __INATNumberOfEntriesCallback_INTERFACE_DEFINED__ */
#ifndef __IDynamicPortMappingCollection_INTERFACE_DEFINED__
#define __IDynamicPortMappingCollection_INTERFACE_DEFINED__
/* interface IDynamicPortMappingCollection */
/* [unique][helpstring][dual][uuid][object] */
EXTERN_C const IID IID_IDynamicPortMappingCollection;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("B60DE00F-156E-4E8D-9EC1-3A2342C10899")
IDynamicPortMappingCollection : public IDispatch
{
public:
virtual /* [restricted][hidden][helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get__NewEnum(
/* [retval][out] */ IUnknown **pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Item(
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol,
/* [retval][out] */ IDynamicPortMapping **ppDPM) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Count(
/* [retval][out] */ long *pVal) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE Remove(
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE Add(
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol,
/* [in] */ long lInternalPort,
/* [in] */ BSTR bstrInternalClient,
/* [in] */ VARIANT_BOOL bEnabled,
/* [in] */ BSTR bstrDescription,
/* [in] */ long lLeaseDuration,
/* [retval][out] */ IDynamicPortMapping **ppDPM) = 0;
};
#else /* C style interface */
typedef struct IDynamicPortMappingCollectionVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IDynamicPortMappingCollection * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IDynamicPortMappingCollection * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IDynamicPortMappingCollection * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
IDynamicPortMappingCollection * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
IDynamicPortMappingCollection * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
IDynamicPortMappingCollection * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
IDynamicPortMappingCollection * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
/* [restricted][hidden][helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get__NewEnum )(
IDynamicPortMappingCollection * This,
/* [retval][out] */ IUnknown **pVal);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_Item )(
IDynamicPortMappingCollection * This,
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol,
/* [retval][out] */ IDynamicPortMapping **ppDPM);
/* [helpstring][id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_Count )(
IDynamicPortMappingCollection * This,
/* [retval][out] */ long *pVal);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *Remove )(
IDynamicPortMappingCollection * This,
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *Add )(
IDynamicPortMappingCollection * This,
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol,
/* [in] */ long lInternalPort,
/* [in] */ BSTR bstrInternalClient,
/* [in] */ VARIANT_BOOL bEnabled,
/* [in] */ BSTR bstrDescription,
/* [in] */ long lLeaseDuration,
/* [retval][out] */ IDynamicPortMapping **ppDPM);
END_INTERFACE
} IDynamicPortMappingCollectionVtbl;
interface IDynamicPortMappingCollection
{
CONST_VTBL struct IDynamicPortMappingCollectionVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IDynamicPortMappingCollection_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IDynamicPortMappingCollection_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IDynamicPortMappingCollection_Release(This) \
(This)->lpVtbl -> Release(This)
#define IDynamicPortMappingCollection_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define IDynamicPortMappingCollection_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define IDynamicPortMappingCollection_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define IDynamicPortMappingCollection_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define IDynamicPortMappingCollection_get__NewEnum(This,pVal) \
(This)->lpVtbl -> get__NewEnum(This,pVal)
#define IDynamicPortMappingCollection_get_Item(This,bstrRemoteHost,lExternalPort,bstrProtocol,ppDPM) \
(This)->lpVtbl -> get_Item(This,bstrRemoteHost,lExternalPort,bstrProtocol,ppDPM)
#define IDynamicPortMappingCollection_get_Count(This,pVal) \
(This)->lpVtbl -> get_Count(This,pVal)
#define IDynamicPortMappingCollection_Remove(This,bstrRemoteHost,lExternalPort,bstrProtocol) \
(This)->lpVtbl -> Remove(This,bstrRemoteHost,lExternalPort,bstrProtocol)
#define IDynamicPortMappingCollection_Add(This,bstrRemoteHost,lExternalPort,bstrProtocol,lInternalPort,bstrInternalClient,bEnabled,bstrDescription,lLeaseDuration,ppDPM) \
(This)->lpVtbl -> Add(This,bstrRemoteHost,lExternalPort,bstrProtocol,lInternalPort,bstrInternalClient,bEnabled,bstrDescription,lLeaseDuration,ppDPM)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [restricted][hidden][helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE IDynamicPortMappingCollection_get__NewEnum_Proxy(
IDynamicPortMappingCollection * This,
/* [retval][out] */ IUnknown **pVal);
void __RPC_STUB IDynamicPortMappingCollection_get__NewEnum_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE IDynamicPortMappingCollection_get_Item_Proxy(
IDynamicPortMappingCollection * This,
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol,
/* [retval][out] */ IDynamicPortMapping **ppDPM);
void __RPC_STUB IDynamicPortMappingCollection_get_Item_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE IDynamicPortMappingCollection_get_Count_Proxy(
IDynamicPortMappingCollection * This,
/* [retval][out] */ long *pVal);
void __RPC_STUB IDynamicPortMappingCollection_get_Count_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IDynamicPortMappingCollection_Remove_Proxy(
IDynamicPortMappingCollection * This,
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol);
void __RPC_STUB IDynamicPortMappingCollection_Remove_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IDynamicPortMappingCollection_Add_Proxy(
IDynamicPortMappingCollection * This,
/* [in] */ BSTR bstrRemoteHost,
/* [in] */ long lExternalPort,
/* [in] */ BSTR bstrProtocol,
/* [in] */ long lInternalPort,
/* [in] */ BSTR bstrInternalClient,
/* [in] */ VARIANT_BOOL bEnabled,
/* [in] */ BSTR bstrDescription,
/* [in] */ long lLeaseDuration,
/* [retval][out] */ IDynamicPortMapping **ppDPM);
void __RPC_STUB IDynamicPortMappingCollection_Add_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IDynamicPortMappingCollection_INTERFACE_DEFINED__ */
#ifndef __IDynamicPortMapping_INTERFACE_DEFINED__
#define __IDynamicPortMapping_INTERFACE_DEFINED__
/* interface IDynamicPortMapping */
/* [unique][helpstring][dual][uuid][object] */
EXTERN_C const IID IID_IDynamicPortMapping;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("4FC80282-23B6-4378-9A27-CD8F17C9400C")
IDynamicPortMapping : public IDispatch
{
public:
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_ExternalIPAddress(
/* [retval][out] */ BSTR *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_RemoteHost(
/* [retval][out] */ BSTR *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_ExternalPort(
/* [retval][out] */ long *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Protocol(
/* [retval][out] */ BSTR *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_InternalPort(
/* [retval][out] */ long *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_InternalClient(
/* [retval][out] */ BSTR *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Enabled(
/* [retval][out] */ VARIANT_BOOL *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_Description(
/* [retval][out] */ BSTR *pVal) = 0;
virtual /* [helpstring][id][propget] */ HRESULT STDMETHODCALLTYPE get_LeaseDuration(
/* [retval][out] */ long *pVal) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE RenewLease(
/* [in] */ long lLeaseDurationDesired,
/* [retval][out] */ long *pLeaseDurationReturned) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE EditInternalClient(
/* [in] */ BSTR bstrInternalClient) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE Enable(
/* [in] */ VARIANT_BOOL vb) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE EditDescription(
/* [in] */ BSTR bstrDescription) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE EditInternalPort(
/* [in] */ long lInternalPort) = 0;
};
#else /* C style interface */
typedef struct IDynamicPortMappingVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IDynamicPortMapping * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IDynamicPortMapping * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IDynamicPortMapping * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
IDynamicPortMapping * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
IDynamicPortMapping * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
IDynamicPortMapping * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,