blob: fa7732cce7f1f9ff9d1a72b9619814414666afa7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma warning(disable:4101) // Ignore variable not use warning
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: iperf_i.c
//
// Contents: IID_IPerf
//
// History: Created by Microsoft (R) MIDL Compiler Version 1.10.83
//
//--------------------------------------------------------------------------
typedef struct _IID
{
unsigned long x;
unsigned short s1;
unsigned short s2;
unsigned char c[8];
} IID;
const IID CLSID_ITest =
{0x60000430, 0xAB0F, 0x101A, {0xB4, 0xAE, 0x08, 0x00, 0x2B, 0x30, 0x61, 0x2C}};
|