You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
443 B

#include <test_i.c>
#include <stdio.h>
#include <test.h>
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;
}