We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fd16dd + 08caf30 commit c6f04fbCopy full SHA for c6f04fb
.gitignore
@@ -6,3 +6,7 @@ x64/
6
**/bin/
7
**/obj/
8
**/*.user
9
+
10
+# IDL generated code
11
+ComServer/IServer_*
12
+ComServer/dlldata.c
ComServer/IServer.idl
@@ -1,8 +1,11 @@
1
import "oaidl.idl";
2
3
-[object,
4
- uuid(F38720E5-2D64-445E-88FB-1D696F614C78)]
5
-interface IServer : IUnknown {
+[
+ object,
+ uuid(F38720E5-2D64-445E-88FB-1D696F614C78)
+]
+interface IServer : IUnknown
+{
[helpstring("Compute and return the value of PI")]
- HRESULT ComputePi ([out,retval] double * pi);
+ HRESULT ComputePi([out,retval] double * pi);
};
0 commit comments