-
Notifications
You must be signed in to change notification settings - Fork 30
/
gcc.log.txt
4670 lines (4670 loc) · 325 KB
/
gcc.log.txt
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
In file included from deps\include/enet/win32.h:18:0,
from deps\include/enet/enet.h:16,
from src\Vorb.cpp:5:
c:\mingw\x86_64-w64-mingw32\include\winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp]
#warning Please include winsock2.h before windows.h
^
In file included from include/rpc.h:20:0,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:88,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
include/Events.hpp: In member function 'void Event<Params>::remove(Event<Params>::Listener)':
include/Events.hpp:127:21: error: 'find' is not a member of 'std'
auto fLoc = std::find(m_funcs.begin(), m_funcs.end(), f);
^
In file included from include/rpc.h:21:0,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:88,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
include/ThreadSync.h: At global scope:
include/ThreadSync.h:40:9: error: 'mutex' in namespace 'std' does not name a type
std::mutex m_lock;
^
include/ThreadSync.h:41:9: error: 'condition_variable' in namespace 'std' does not name a type
std::condition_variable m_cond;
^
include/ThreadSync.h: In member function 'void ThreadSyncQueue<T>::ThreadSyncObject::block()':
include/ThreadSync.h:32:30: error: 'mutex' is not a member of 'std'
std::unique_lock<std::mutex> lck(m_lock);
^
include/ThreadSync.h:32:30: error: 'mutex' is not a member of 'std'
include/ThreadSync.h:32:40: error: template argument 1 is invalid
std::unique_lock<std::mutex> lck(m_lock);
^
include/ThreadSync.h:32:45: error: invalid type in declaration before '(' token
std::unique_lock<std::mutex> lck(m_lock);
^
include/ThreadSync.h:32:46: error: 'm_lock' was not declared in this scope
std::unique_lock<std::mutex> lck(m_lock);
^
include/ThreadSync.h:34:13: error: 'm_cond' was not declared in this scope
m_cond.wait(lck);
^
include/ThreadSync.h: In member function 'void ThreadSyncQueue<T>::add(ThreadSyncQueue<T>::ThreadSyncObject*, bool)':
include/ThreadSync.h:48:26: error: 'mutex' is not a member of 'std'
std::unique_lock<std::mutex> lck(so->m_lock);
^
include/ThreadSync.h:48:26: error: 'mutex' is not a member of 'std'
include/ThreadSync.h:48:36: error: template argument 1 is invalid
std::unique_lock<std::mutex> lck(so->m_lock);
^
include/ThreadSync.h:48:41: error: invalid type in declaration before '(' token
std::unique_lock<std::mutex> lck(so->m_lock);
^
In file included from c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:21:0,
from c:\mingw\x86_64-w64-mingw32\include\wtypes.h:8,
from c:\mingw\x86_64-w64-mingw32\include\winscard.h:10,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:97,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h: At global scope:
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:14:5: error: 'RPC_NS_HANDLE' does not name a type
RPC_NS_HANDLE LookupContext;
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:15:5: error: 'RPC_BINDING_HANDLE' does not name a type
RPC_BINDING_HANDLE ProposedHandle;
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:16:5: error: 'RPC_BINDING_VECTOR' does not name a type
RPC_BINDING_VECTOR *Bindings;
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:19:3: error: 'RPCNSAPI' does not name a type
RPCNSAPI RPC_STATUS RPC_ENTRY I_RpcNsGetBuffer(PRPC_MESSAGE Message);
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:20:3: error: 'RPCNSAPI' does not name a type
RPCNSAPI RPC_STATUS RPC_ENTRY I_RpcNsSendReceive(PRPC_MESSAGE Message,RPC_BINDING_HANDLE *Handle);
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:21:3: error: 'RPCNSAPI' does not name a type
RPCNSAPI void RPC_ENTRY I_RpcNsRaiseException(PRPC_MESSAGE Message,RPC_STATUS Status);
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:22:3: error: 'RPCNSAPI' does not name a type
RPCNSAPI RPC_STATUS RPC_ENTRY I_RpcReBindBuffer(PRPC_MESSAGE Message);
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:23:3: error: 'RPCNSAPI' does not name a type
RPCNSAPI RPC_STATUS RPC_ENTRY I_NsServerBindSearch();
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:24:3: error: 'RPCNSAPI' does not name a type
RPCNSAPI RPC_STATUS RPC_ENTRY I_NsClientBindSearch();
^
c:\mingw\x86_64-w64-mingw32\include\rpcnsip.h:25:3: error: 'RPCNSAPI' does not name a type
RPCNSAPI void RPC_ENTRY I_NsClientBindDone();
^
In file included from c:\mingw\x86_64-w64-mingw32\include\wtypes.h:8:0,
from c:\mingw\x86_64-w64-mingw32\include\winscard.h:10,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:97,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:110:20: error: expected initializer before 'MIDL_user_allocate'
void *__RPC_USER MIDL_user_allocate(SIZE_T);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:111:19: error: expected initializer before 'MIDL_user_free'
void __RPC_USER MIDL_user_free(void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:135:27: error: expected ')' before '*' token
typedef void (__RPC_API *NDR_RUNDOWN)(void *context);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:136:27: error: expected ')' before '*' token
typedef void (__RPC_API *NDR_NOTIFY_ROUTINE)(void);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:137:27: error: expected ')' before '*' token
typedef void (__RPC_API *NDR_NOTIFY2_ROUTINE)(boolean flag);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:144:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_BINDING_HANDLE RPC_ENTRY NDRCContextBinding(NDR_CCONTEXT CContext);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:145:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NDRCContextMarshall(NDR_CCONTEXT CContext,void *pBuff);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:146:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NDRCContextUnmarshall(NDR_CCONTEXT *pCContext,RPC_BINDING_HANDLE hBinding,void *pBuff,unsigned __LONG32 DataRepresentation);
^
In file included from c:\mingw\x86_64-w64-mingw32\include\wtypes.h:8:0,
from c:\mingw\x86_64-w64-mingw32\include\winscard.h:10,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:97,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:147:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NDRSContextMarshall(NDR_SCONTEXT CContext,void *pBuff,NDR_RUNDOWN userRunDownIn);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:148:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI NDR_SCONTEXT RPC_ENTRY NDRSContextUnmarshall(void *pBuff,unsigned __LONG32 DataRepresentation);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:149:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NDRSContextMarshallEx(RPC_BINDING_HANDLE BindingHandle,NDR_SCONTEXT CContext,void *pBuff,NDR_RUNDOWN userRunDownIn);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:150:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NDRSContextMarshall2(RPC_BINDING_HANDLE BindingHandle,NDR_SCONTEXT CContext,void *pBuff,NDR_RUNDOWN userRunDownIn,void *CtxGuard,unsigned __LONG32 Flags);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:151:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI NDR_SCONTEXT RPC_ENTRY NDRSContextUnmarshallEx(RPC_BINDING_HANDLE BindingHandle,void *pBuff,unsigned __LONG32 DataRepresentation);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:152:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI NDR_SCONTEXT RPC_ENTRY NDRSContextUnmarshall2(RPC_BINDING_HANDLE BindingHandle,void *pBuff,unsigned __LONG32 DataRepresentation,void *CtxGuard,unsigned __LONG32 Flags);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:153:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY RpcSsDestroyClientContext(void **ContextHandle);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:213:27: error: expected ')' before '*' token
typedef void (__RPC_API *EXPR_EVAL)(struct _MIDL_STUB_MESSAGE *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:242:5: error: 'PRPC_MESSAGE' does not name a type
PRPC_MESSAGE RpcMsg;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:264:22: error: expected ')' before '*' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:264:12: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:264:23: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:264:34: error: expected unqualified-id before ')' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:265:21: error: expected ')' before '*' token
void (__RPC_API *pfnFree)(void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:269:5: error: 'handle_t' does not name a type
handle_t SavedHandle;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:316:28: error: expected ')' before '*' token
typedef void *(__RPC_API *GENERIC_BINDING_ROUTINE)(void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:316:28: error: expected initializer before '*' token
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:317:27: error: expected ')' before '*' token
typedef void (__RPC_API *GENERIC_UNBIND_ROUTINE)(void *,unsigned char *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:320:5: error: 'GENERIC_BINDING_ROUTINE' does not name a type
GENERIC_BINDING_ROUTINE pfnBind;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:321:5: error: 'GENERIC_UNBIND_ROUTINE' does not name a type
GENERIC_UNBIND_ROUTINE pfnUnbind;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:327:5: error: 'GENERIC_BINDING_ROUTINE' does not name a type
GENERIC_BINDING_ROUTINE pfnBind;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:328:5: error: 'GENERIC_UNBIND_ROUTINE' does not name a type
GENERIC_UNBIND_ROUTINE pfnUnbind;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:333:27: error: expected ')' before '*' token
typedef void (__RPC_API *XMIT_HELPER_ROUTINE)(PMIDL_STUB_MESSAGE);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:336:5: error: 'XMIT_HELPER_ROUTINE' does not name a type
XMIT_HELPER_ROUTINE pfnTranslateToXmit;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:337:5: error: 'XMIT_HELPER_ROUTINE' does not name a type
XMIT_HELPER_ROUTINE pfnTranslateFromXmit;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:338:5: error: 'XMIT_HELPER_ROUTINE' does not name a type
XMIT_HELPER_ROUTINE pfnFreeXmit;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:339:5: error: 'XMIT_HELPER_ROUTINE' does not name a type
XMIT_HELPER_ROUTINE pfnFreeInst;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:342:28: error: expected ')' before '*' token
typedef ULONG (__RPC_API *USER_MARSHAL_SIZING_ROUTINE)(ULONG *,ULONG,void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:343:37: error: expected ')' before '*' token
typedef unsigned char *(__RPC_API *USER_MARSHAL_MARSHALLING_ROUTINE)(ULONG *,unsigned char *,void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:343:37: error: expected initializer before '*' token
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:344:37: error: expected ')' before '*' token
typedef unsigned char *(__RPC_API *USER_MARSHAL_UNMARSHALLING_ROUTINE)(ULONG *,unsigned char *,void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:344:37: error: expected initializer before '*' token
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:345:27: error: expected ')' before '*' token
typedef void (__RPC_API *USER_MARSHAL_FREEING_ROUTINE)(ULONG *,void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:348:5: error: 'USER_MARSHAL_SIZING_ROUTINE' does not name a type
USER_MARSHAL_SIZING_ROUTINE pfnBufferSize;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:349:5: error: 'USER_MARSHAL_MARSHALLING_ROUTINE' does not name a type
USER_MARSHAL_MARSHALLING_ROUTINE pfnMarshall;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:350:5: error: 'USER_MARSHAL_UNMARSHALLING_ROUTINE' does not name a type
USER_MARSHAL_UNMARSHALLING_ROUTINE pfnUnmarshall;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:351:5: error: 'USER_MARSHAL_FREEING_ROUTINE' does not name a type
USER_MARSHAL_FREEING_ROUTINE pfnFree;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:378:22: error: expected ')' before '*' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:378:12: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:378:23: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:378:34: error: expected unqualified-id before ')' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:379:21: error: expected ')' before '*' token
void (__RPC_API *pfnFree)(void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:391:27: error: expected ')' before '*' token
typedef void (__RPC_API *CS_TYPE_NET_SIZE_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned __LONG32 ulNetworkCodeSet,unsigned __LONG32 ulLocalBufferSize,IDL_CS_CONVERT *conversionType,unsigned __LONG32 *pulNetworkBufferSize,error_status_t *pStatus);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:392:27: error: expected ')' before '*' token
typedef void (__RPC_API *CS_TYPE_LOCAL_SIZE_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned __LONG32 ulNetworkCodeSet,unsigned __LONG32 ulNetworkBufferSize,IDL_CS_CONVERT *conversionType,unsigned __LONG32 *pulLocalBufferSize,error_status_t *pStatus);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:393:27: error: expected ')' before '*' token
typedef void (__RPC_API *CS_TYPE_TO_NETCS_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned __LONG32 ulNetworkCodeSet,void *pLocalData,unsigned __LONG32 ulLocalDataLength,byte *pNetworkData,unsigned __LONG32 *pulNetworkDataLength,error_status_t *pStatus);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:394:27: error: expected ')' before '*' token
typedef void (__RPC_API *CS_TYPE_FROM_NETCS_ROUTINE)(RPC_BINDING_HANDLE hBinding,unsigned __LONG32 ulNetworkCodeSet,byte *pNetworkData,unsigned __LONG32 ulNetworkDataLength,unsigned __LONG32 ulLocalBufferSize,void *pLocalData,unsigned __LONG32 *pulLocalDataLength,error_status_t *pStatus);
^
In file included from c:\mingw\x86_64-w64-mingw32\include\wtypes.h:8:0,
from c:\mingw\x86_64-w64-mingw32\include\winscard.h:10,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:97,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:395:27: error: expected ')' before '*' token
typedef void (__RPC_API *CS_TAG_GETTING_ROUTINE)(RPC_BINDING_HANDLE hBinding,int fServerSide,unsigned __LONG32 *pulSendingTag,unsigned __LONG32 *pulDesiredReceivingTag,unsigned __LONG32 *pulReceivingTag,error_status_t *pStatus);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:397:18: error: expected initializer before 'RpcCsGetTags'
void __RPC_API RpcCsGetTags(RPC_BINDING_HANDLE hBinding,int fServerSide,unsigned __LONG32 *pulSendingTag,unsigned __LONG32 *pulDesiredReceivingTag,unsigned __LONG32 *pulReceivingTag,error_status_t *pStatus);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:400:5: error: 'CS_TYPE_NET_SIZE_ROUTINE' does not name a type
CS_TYPE_NET_SIZE_ROUTINE pfnNetSize;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:401:5: error: 'CS_TYPE_TO_NETCS_ROUTINE' does not name a type
CS_TYPE_TO_NETCS_ROUTINE pfnToNetCs;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:402:5: error: 'CS_TYPE_LOCAL_SIZE_ROUTINE' does not name a type
CS_TYPE_LOCAL_SIZE_ROUTINE pfnLocalSize;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:403:5: error: 'CS_TYPE_FROM_NETCS_ROUTINE' does not name a type
CS_TYPE_FROM_NETCS_ROUTINE pfnFromNetCs;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:408:5: error: 'CS_TAG_GETTING_ROUTINE' does not name a type
CS_TAG_GETTING_ROUTINE *pTagGettingRoutines;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:413:22: error: expected ')' before '*' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:413:12: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:413:23: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:413:34: error: expected unqualified-id before ')' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:414:21: error: expected ')' before '*' token
void (__RPC_API *pfnFree)(void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:416:7: error: 'handle_t' does not name a type
handle_t *pAutoHandle;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:417:7: error: 'handle_t' does not name a type
handle_t *pPrimitiveHandle;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:420:11: error: 'NDR_RUNDOWN' does not name a type
const NDR_RUNDOWN *apfnNdrRundownRoutines;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:422:11: error: 'EXPR_EVAL' does not name a type
const EXPR_EVAL *apfnExprEval;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:431:11: error: 'NDR_NOTIFY_ROUTINE' does not name a type
const NDR_NOTIFY_ROUTINE *NotifyRoutineTable;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:446:27: error: expected ')' before '*' token
typedef void (__RPC_API *STUB_THUNK)(PMIDL_STUB_MESSAGE);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:447:31: error: expected ')' before '*' token
typedef __LONG32 (__RPC_API *SERVER_ROUTINE)();
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:451:11: error: 'SERVER_ROUTINE' does not name a type
const SERVER_ROUTINE *DispatchTable;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:454:11: error: 'STUB_THUNK' does not name a type
const STUB_THUNK *ThunkTable;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:455:5: error: 'PRPC_SYNTAX_IDENTIFIER' does not name a type
PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:466:5: error: 'PRPC_SYNTAX_IDENTIFIER' does not name a type
PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:474:5: error: 'RPC_SYNTAX_IDENTIFIER' does not name a type
RPC_SYNTAX_IDENTIFIER TransferSyntax;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:475:5: error: 'RPC_DISPATCH_TABLE' does not name a type
RPC_DISPATCH_TABLE *DispatchTable;
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:518:3: error: 'RPC_STATUS' does not name a type
RPC_STATUS RPC_ENTRY NdrClientGetSupportedSyntaxes(RPC_CLIENT_INTERFACE *pInf,unsigned __LONG32 *pCount,MIDL_SYNTAX_INFO **pArr);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:519:3: error: 'RPC_STATUS' does not name a type
RPC_STATUS RPC_ENTRY NdrServerGetSupportedSyntaxes(RPC_SERVER_INTERFACE *pInf,unsigned __LONG32 *pCount,MIDL_SYNTAX_INFO **pArr,unsigned __LONG32 *pPreferSyntaxIndex);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:520:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrSimpleTypeMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,unsigned char FormatChar);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:521:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:522:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrCsArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:523:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrCsTagMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:524:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrSimpleStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:525:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:526:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantVaryingStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:527:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrComplexStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:528:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrFixedArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:529:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:530:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantVaryingArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:531:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrVaryingArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:532:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrComplexArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:533:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrNonConformantStringMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:534:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantStringMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:535:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:536:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrNonEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:537:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrByteCountPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:538:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrXmitOrRepAsMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:539:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrUserMarshalMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:540:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrInterfacePointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:541:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrClientContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_CCONTEXT ContextHandle,int fCheck);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:542:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_SCONTEXT ContextHandle,NDR_RUNDOWN RundownRoutine);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:543:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerContextNewMarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_SCONTEXT ContextHandle,NDR_RUNDOWN RundownRoutine,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:544:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrSimpleTypeUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,unsigned char FormatChar);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:545:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrCsArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:546:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrCsTagUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:547:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrRangeUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:548:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrCorrelationInitialize(PMIDL_STUB_MESSAGE pStubMsg,void *pMemory,unsigned __LONG32 CacheSize,unsigned __LONG32 flags);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:549:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrCorrelationPass(PMIDL_STUB_MESSAGE pStubMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:550:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrCorrelationFree(PMIDL_STUB_MESSAGE pStubMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:551:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:552:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrSimpleStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:553:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:554:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantVaryingStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:555:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrComplexStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:556:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrFixedArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:557:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:558:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:559:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:560:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrComplexArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:561:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrNonConformantStringUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:562:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrConformantStringUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:563:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:564:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrNonEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:565:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrByteCountPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:566:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrXmitOrRepAsUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:567:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrUserMarshalUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:568:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrInterfacePointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **ppMemory,PFORMAT_STRING pFormat,unsigned char fMustAlloc);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:569:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,NDR_CCONTEXT *pContextHandle,RPC_BINDING_HANDLE BindHandle);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:570:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI NDR_SCONTEXT RPC_ENTRY NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:571:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI NDR_SCONTEXT RPC_ENTRY NdrContextHandleInitialize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:572:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI NDR_SCONTEXT RPC_ENTRY NdrServerContextNewUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:573:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:574:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrCsArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:575:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrCsTagBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:576:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrSimpleStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:577:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:578:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantVaryingStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:579:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrComplexStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:580:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrFixedArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:581:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:582:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantVaryingArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:583:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrVaryingArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:584:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrComplexArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:585:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:586:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrNonConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:587:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:588:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrNonEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:589:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrByteCountPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:590:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrXmitOrRepAsBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:591:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrUserMarshalBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:592:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrInterfacePointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:593:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrContextHandleSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:594:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrPointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:595:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrCsArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:596:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrCsTagMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:597:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrSimpleStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:598:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrConformantStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:599:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrConformantVaryingStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:600:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrComplexStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:601:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrFixedArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:602:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrConformantArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:603:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrConformantVaryingArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:604:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrVaryingArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:605:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrComplexArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:606:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrConformantStringMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:607:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrNonConformantStringMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:608:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:609:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrNonEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:610:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrXmitOrRepAsMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:611:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrUserMarshalMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:612:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrInterfacePointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:613:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrPointerFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:614:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrCsArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:615:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrSimpleStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:616:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:617:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantVaryingStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:618:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrComplexStructFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:619:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrFixedArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:620:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:621:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConformantVaryingArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:622:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrVaryingArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:623:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrComplexArrayFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:624:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:625:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrNonEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:626:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrByteCountPointerFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:627:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrXmitOrRepAsFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:628:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrUserMarshalFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:629:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrInterfacePointerFree(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:630:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConvert2(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat,__LONG32 NumberParams);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:631:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrConvert(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:646:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrUserMarshalSimpleTypeConvert(unsigned __LONG32 *pFlags,unsigned char *pBuffer,unsigned char FormatChar);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:647:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrClientInitializeNew(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,unsigned int ProcNum);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:648:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrServerInitializeNew(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:649:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerInitializePartial(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,unsigned __LONG32 RequestedBufferSize);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:650:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrClientInitialize(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,unsigned int ProcNum);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:651:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrServerInitialize(PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:652:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrServerInitializeUnmarshall (PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:653:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerInitializeMarshall (PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:654:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrGetBuffer(PMIDL_STUB_MESSAGE pStubMsg,unsigned __LONG32 BufferLength,RPC_BINDING_HANDLE Handle);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:655:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrNsGetBuffer(PMIDL_STUB_MESSAGE pStubMsg,unsigned __LONG32 BufferLength,RPC_BINDING_HANDLE Handle);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:656:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrSendReceive(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pBufferEnd);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:657:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned char *RPC_ENTRY NdrNsSendReceive(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pBufferEnd,RPC_BINDING_HANDLE *pAutoHandle);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:658:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrFreeBuffer(PMIDL_STUB_MESSAGE pStubMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:659:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY NdrGetDcomProtocolVersion(PMIDL_STUB_MESSAGE pStubMsg,RPC_VERSION *pVersion);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:678:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrAsyncServerCall(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:679:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI __LONG32 RPC_ENTRY NdrAsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned __LONG32 *pdwStubPhase);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:680:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI __LONG32 RPC_ENTRY NdrDcomAsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned __LONG32 *pdwStubPhase);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:681:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI __LONG32 RPC_ENTRY NdrStubCall2(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned __LONG32 *pdwStubPhase);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:682:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerCall2(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:683:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI __LONG32 RPC_ENTRY NdrStubCall (struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned __LONG32 *pdwStubPhase);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:684:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerCall(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:685:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrServerUnmarshall(struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,PMIDL_STUB_MESSAGE pStubMsg,PMIDL_STUB_DESC pStubDescriptor,PFORMAT_STRING pFormat,void *pParamList);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:686:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerMarshall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:687:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY NdrMapCommAndFaultStatus(PMIDL_STUB_MESSAGE pStubMsg,unsigned __LONG32 *pCommStatus,unsigned __LONG32 *pFaultStatus,RPC_STATUS Status);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:688:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrSH_UPDecision(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,RPC_BUFPTR pBuffer);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:689:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrSH_TLUPDecision(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:690:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrSH_TLUPDecisionBuffer(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:691:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrSH_IfAlloc(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned __LONG32 Count);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:692:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrSH_IfAllocRef(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned __LONG32 Count);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:693:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrSH_IfAllocSet(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned __LONG32 Count);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:694:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_BUFPTR RPC_ENTRY NdrSH_IfCopy(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned __LONG32 Count);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:695:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_BUFPTR RPC_ENTRY NdrSH_IfAllocCopy(PMIDL_STUB_MESSAGE pStubMsg,unsigned char **pPtrInMem,unsigned __LONG32 Count);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:696:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI unsigned __LONG32 RPC_ENTRY NdrSH_Copy(unsigned char *pStubMsg,unsigned char *pPtrInMem,unsigned __LONG32 Count);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:697:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrSH_IfFree(PMIDL_STUB_MESSAGE pMessage,unsigned char *pPtr);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:698:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_BUFPTR RPC_ENTRY NdrSH_StringMarshall(PMIDL_STUB_MESSAGE pMessage,unsigned char *pMemory,unsigned __LONG32 Count,int Size);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:699:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_BUFPTR RPC_ENTRY NdrSH_StringUnMarshall(PMIDL_STUB_MESSAGE pMessage,unsigned char **pMemory,int Size);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:703:27: error: expected initializer before 'RPC_CLIENT_ALLOC'
typedef void *__RPC_API RPC_CLIENT_ALLOC(size_t Size);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:704:26: error: expected initializer before 'RPC_CLIENT_FREE'
typedef void __RPC_API RPC_CLIENT_FREE(void *Ptr);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:706:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void *RPC_ENTRY RpcSsAllocate(size_t Size);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:707:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY RpcSsDisableAllocate(void);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:708:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY RpcSsEnableAllocate(void);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:709:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY RpcSsFree(void *NodeToFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:710:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_SS_THREAD_HANDLE RPC_ENTRY RpcSsGetThreadHandle(void);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:711:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY RpcSsSetClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:712:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY RpcSsSetThreadHandle(RPC_SS_THREAD_HANDLE Id);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:713:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY RpcSsSwapClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree,RPC_CLIENT_ALLOC **OldClientAlloc,RPC_CLIENT_FREE **OldClientFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:714:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void *RPC_ENTRY RpcSmAllocate(size_t Size,RPC_STATUS *pStatus);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:715:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmClientFree(void *pNodeToFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:716:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmDestroyClientContext(void **ContextHandle);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:717:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmDisableAllocate(void);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:718:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmEnableAllocate(void);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:719:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmFree(void *NodeToFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:720:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_SS_THREAD_HANDLE RPC_ENTRY RpcSmGetThreadHandle (RPC_STATUS *pStatus);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:721:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmSetClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:722:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmSetThreadHandle(RPC_SS_THREAD_HANDLE Id);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:723:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI RPC_STATUS RPC_ENTRY RpcSmSwapClientAllocFree(RPC_CLIENT_ALLOC *ClientAlloc,RPC_CLIENT_FREE *ClientFree,RPC_CLIENT_ALLOC **OldClientAlloc,RPC_CLIENT_FREE **OldClientFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:724:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrRpcSsEnableAllocate(PMIDL_STUB_MESSAGE pMessage);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:725:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrRpcSsDisableAllocate(PMIDL_STUB_MESSAGE pMessage);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:726:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrRpcSmSetClientToOsf(PMIDL_STUB_MESSAGE pMessage);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:727:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void *RPC_ENTRY NdrRpcSmClientAllocate(size_t Size);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:728:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrRpcSmClientFree(void *NodeToFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:729:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void *RPC_ENTRY NdrRpcSsDefaultAllocate(size_t Size);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:730:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrRpcSsDefaultFree(void *NodeToFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:731:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI PFULL_PTR_XLAT_TABLES RPC_ENTRY NdrFullPointerXlatInit(unsigned __LONG32 NumberOfPointers,XLAT_SIDE XlatSide);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:732:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrFullPointerXlatFree(PFULL_PTR_XLAT_TABLES pXlatTables);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:733:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrFullPointerQueryPointer(PFULL_PTR_XLAT_TABLES pXlatTables,void *pPointer,unsigned char QueryType,unsigned __LONG32 *pRefId);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:734:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrFullPointerQueryRefId(PFULL_PTR_XLAT_TABLES pXlatTables,unsigned __LONG32 RefId,unsigned char QueryType,void **ppPointer);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:735:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrFullPointerInsertRefId(PFULL_PTR_XLAT_TABLES pXlatTables,unsigned __LONG32 RefId,void *pPointer);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:736:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI int RPC_ENTRY NdrFullPointerFree(PFULL_PTR_XLAT_TABLES pXlatTables,void *Pointer);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:737:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void *RPC_ENTRY NdrAllocate(PMIDL_STUB_MESSAGE pStubMsg,size_t Len);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:738:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrClearOutParameters(PMIDL_STUB_MESSAGE pStubMsg,PFORMAT_STRING pFormat,void *ArgAddr);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:739:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void *RPC_ENTRY NdrOleAllocate(size_t Size);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:740:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrOleFree(void *NodeToFree);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:762:22: error: expected ')' before '*' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:762:12: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:762:23: error: expected ';' at end of member declaration
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:762:34: error: expected unqualified-id before ')' token
void *(__RPC_API *pfnAllocate)(size_t);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:763:21: error: expected ')' before '*' token
void (__RPC_API *pfnFree)(void *);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:775:3: error: 'RPC_STATUS' does not name a type
RPC_STATUS RPC_ENTRY NdrGetUserMarshalInfo(unsigned __LONG32 *pFlags,unsigned __LONG32 InformationLevel,NDR_USER_MARSHAL_INFO *pMarshalInfo);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:776:3: error: 'RPC_STATUS' does not name a type
RPC_STATUS RPC_ENTRY NdrCreateServerInterfaceFromStub(struct IRpcStubBuffer *pStub,RPC_SERVER_INTERFACE *pServerIf);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:783:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY Ndr64AsyncServerCall(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:784:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY Ndr64AsyncServerCall64(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:785:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY Ndr64AsyncServerCallAll(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:786:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI __LONG32 RPC_ENTRY Ndr64AsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned __LONG32 *pdwStubPhase);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:787:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI __LONG32 RPC_ENTRY Ndr64DcomAsyncStubCall(struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned __LONG32 *pdwStubPhase);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:788:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI __LONG32 RPC_ENTRY NdrStubCall3 (struct IRpcStubBuffer *pThis,struct IRpcChannelBuffer *pChannel,PRPC_MESSAGE pRpcMsg,unsigned __LONG32 *pdwStubPhase);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:789:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerCallAll(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:790:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerCallNdr64(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:791:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrServerCall3(PRPC_MESSAGE pRpcMsg);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:792:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrPartialIgnoreClientMarshall(PMIDL_STUB_MESSAGE pStubMsg,void *pMemory);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:793:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrPartialIgnoreServerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,void **ppMemory);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:794:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrPartialIgnoreClientBufferSize(PMIDL_STUB_MESSAGE pStubMsg,void *pMemory);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:795:3: error: 'RPCRTAPI' does not name a type
RPCRTAPI void RPC_ENTRY NdrPartialIgnoreServerInitialize(PMIDL_STUB_MESSAGE pStubMsg,void **ppMemory,PFORMAT_STRING pFormat);
^
c:\mingw\x86_64-w64-mingw32\include\rpcndr.h:796:18: error: expected initializer before 'RpcUserFree'
void RPC_ENTRY RpcUserFree(handle_t AsyncHandle,void *pBuffer);
^
In file included from c:\mingw\x86_64-w64-mingw32\include\combaseapi.h:153:0,
from c:\mingw\x86_64-w64-mingw32\include\objbase.h:14,
from c:\mingw\x86_64-w64-mingw32\include\ole2.h:17,
from c:\mingw\x86_64-w64-mingw32\include\wtypes.h:12,
from c:\mingw\x86_64-w64-mingw32\include\winscard.h:10,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:97,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
c:\mingw\x86_64-w64-mingw32\include\wtypesbase.h:41:8: error: 'RPC_IF_HANDLE' does not name a type
extern RPC_IF_HANDLE IWinTypesBase_v0_1_c_ifspec;
^
c:\mingw\x86_64-w64-mingw32\include\wtypesbase.h:42:8: error: 'RPC_IF_HANDLE' does not name a type
extern RPC_IF_HANDLE IWinTypesBase_v0_1_s_ifspec;
^
In file included from c:\mingw\x86_64-w64-mingw32\include\combaseapi.h:154:0,
from c:\mingw\x86_64-w64-mingw32\include\objbase.h:14,
from c:\mingw\x86_64-w64-mingw32\include\ole2.h:17,
from c:\mingw\x86_64-w64-mingw32\include\wtypes.h:12,
from c:\mingw\x86_64-w64-mingw32\include\winscard.h:10,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:97,
from include/compat.h:49,
from include/stdafx.h:29,
from src\Vorb.cpp:1:
c:\mingw\x86_64-w64-mingw32\include\unknwnbase.h:81:17: error: expected initializer before 'IUnknown_QueryInterface_Stub'
void __RPC_STUB IUnknown_QueryInterface_Stub(IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase);
^
In file included from c:\mingw\x86_64-w64-mingw32\include\combaseapi.h:154:0,
from c:\mingw\x86_64-w64-mingw32\include\objbase.h:14,
from c:\mingw\x86_64-w64-mingw32\include\ole2.h:17,
from c:\mingw\x86_64-w64-mingw32\include\wtypes.h:12,
from c:\mingw\x86_64-w64-mingw32\include\winscard.h:10,
from c:\mingw\x86_64-w64-mingw32\include\windows.h:97,
from include/compat.h:49,