25 lines
654 B
C
25 lines
654 B
C
#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_IPerf = {0x1AFDBB80, 0xAA32, 0x101A, {0xB4, 0xAD, 0x08, 0x00, 0x2B, 0x30, 0x61, 0x2C}};
|
||
|