Skip to content

Commit a53b925

Browse files
committed
_CoreScanner_i.c added into the source in C++ sample application.
1 parent 4715cb4 commit a53b925

File tree

2 files changed

+89
-1
lines changed

2 files changed

+89
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ artifacts/
6464
StyleCopReport.xml
6565

6666
# Files built by Visual Studio
67-
*_i.c
67+
#*_i.c
6868
*_p.c
6969
*_h.h
7070
*.ilk

SampleApp_CPP/_CoreScanner_i.c

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
2+
3+
/* this ALWAYS GENERATED file contains the IIDs and CLSIDs */
4+
5+
/* link this file in with the server and any clients */
6+
7+
8+
/* File created by MIDL compiler version 8.00.0595 */
9+
/* at Wed Nov 07 10:25:29 2018
10+
*/
11+
/* Compiler settings for _CoreScanner.idl:
12+
Oicf, W1, Zp8, env=Win64 (32b run), target_arch=AMD64 8.00.0595
13+
protocol : dce , ms_ext, c_ext, robust
14+
error checks: allocation ref bounds_check enum stub_data
15+
VC __declspec() decoration level:
16+
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
17+
DECLSPEC_UUID(), MIDL_INTERFACE()
18+
*/
19+
/* @@MIDL_FILE_HEADING( ) */
20+
21+
#pragma warning( disable: 4049 ) /* more than 64k source lines */
22+
23+
24+
#ifdef __cplusplus
25+
extern "C"{
26+
#endif
27+
28+
29+
#include <rpc.h>
30+
#include <rpcndr.h>
31+
32+
#ifdef _MIDL_USE_GUIDDEF_
33+
34+
#ifndef INITGUID
35+
#define INITGUID
36+
#include <guiddef.h>
37+
#undef INITGUID
38+
#else
39+
#include <guiddef.h>
40+
#endif
41+
42+
#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
43+
DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
44+
45+
#else // !_MIDL_USE_GUIDDEF_
46+
47+
#ifndef __IID_DEFINED__
48+
#define __IID_DEFINED__
49+
50+
typedef struct _IID
51+
{
52+
unsigned long x;
53+
unsigned short s1;
54+
unsigned short s2;
55+
unsigned char c[8];
56+
} IID;
57+
58+
#endif // __IID_DEFINED__
59+
60+
#ifndef CLSID_DEFINED
61+
#define CLSID_DEFINED
62+
typedef IID CLSID;
63+
#endif // CLSID_DEFINED
64+
65+
#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
66+
const type name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
67+
68+
#endif !_MIDL_USE_GUIDDEF_
69+
70+
MIDL_DEFINE_GUID(IID, IID_ICoreScanner,0x2105896C,0x2B38,0x4031,0xBD,0x0B,0x7A,0x9C,0x4A,0x39,0xFB,0x93);
71+
72+
73+
MIDL_DEFINE_GUID(IID, LIBID_CoreScanner,0xDB07B9FC,0x18B0,0x4B55,0x9A,0x44,0x31,0xD2,0xC2,0xF8,0x78,0x75);
74+
75+
76+
MIDL_DEFINE_GUID(IID, DIID__ICoreScannerEvents,0x981E3D8B,0xC756,0x4195,0xA7,0x02,0xF1,0x98,0x96,0x50,0x31,0xC6);
77+
78+
79+
MIDL_DEFINE_GUID(CLSID, CLSID_CCoreScanner,0x9F8D4F16,0x0F61,0x4A38,0x98,0xB3,0x1F,0x6F,0x80,0xF1,0x1C,0x87);
80+
81+
#undef MIDL_DEFINE_GUID
82+
83+
#ifdef __cplusplus
84+
}
85+
#endif
86+
87+
88+

0 commit comments

Comments
 (0)