Skip to content

Commit c6f04fb

Browse files
Merge pull request #4 from AaronRobinsonMSFT/update_for_idl_changes
Add MIDL generated files to gitignore
2 parents 8fd16dd + 08caf30 commit c6f04fb

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ x64/
66
**/bin/
77
**/obj/
88
**/*.user
9+
10+
# IDL generated code
11+
ComServer/IServer_*
12+
ComServer/dlldata.c

ComServer/IServer.idl

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
import "oaidl.idl";
22

3-
[object,
4-
uuid(F38720E5-2D64-445E-88FB-1D696F614C78)]
5-
interface IServer : IUnknown {
3+
[
4+
object,
5+
uuid(F38720E5-2D64-445E-88FB-1D696F614C78)
6+
]
7+
interface IServer : IUnknown
8+
{
69
[helpstring("Compute and return the value of PI")]
7-
HRESULT ComputePi ([out,retval] double * pi);
10+
HRESULT ComputePi([out,retval] double * pi);
811
};

0 commit comments

Comments
 (0)