Skip to content

Commit 08caf30

Browse files
Add MIDL generated files to gitignore
Update style in IDL file
1 parent 8fd16dd commit 08caf30

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
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

Lines changed: 7 additions & 4 deletions
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)