summaryrefslogtreecommitdiff
path: root/Tests/VSMidl/src/main.cpp
blob: 6b78fcc7f52e93ba9d0ef0cb4952e0a238c89f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <test.h>
#include <test_i.c>

int main(int argc, char** argv)
{
  IID libid = LIBID_CMakeMidlTestLib;
  CLSID clsid = CLSID_CMakeMidlTest;
  IID iid = IID_ICMakeMidlTest;

  printf("Running '%s'\n", argv[0]);
  printf("  libid starts with '0x%08lx'\n", (long) libid.Data1);
  printf("  clsid starts with '0x%08lx'\n", (long) clsid.Data1);
  printf("    iid starts with '0x%08lx'\n", (long) iid.Data1);

  return 0;
}