diff options
Diffstat (limited to 'private/oleutest/perf/perfuuid')
-rw-r--r-- | private/oleutest/perf/perfuuid/makefile | 9 | ||||
-rw-r--r-- | private/oleutest/perf/perfuuid/perfsrvi.c | 24 | ||||
-rw-r--r-- | private/oleutest/perf/perfuuid/sources | 68 |
3 files changed, 101 insertions, 0 deletions
diff --git a/private/oleutest/perf/perfuuid/makefile b/private/oleutest/perf/perfuuid/makefile new file mode 100644 index 000000000..510cce95d --- /dev/null +++ b/private/oleutest/perf/perfuuid/makefile @@ -0,0 +1,9 @@ +############################################################################ +# +# Copyright (C) 1992, Microsoft Corporation. +# +# All rights reserved. +# +############################################################################ + +!include $(NTMAKEENV)\makefile.def diff --git a/private/oleutest/perf/perfuuid/perfsrvi.c b/private/oleutest/perf/perfuuid/perfsrvi.c new file mode 100644 index 000000000..98e1ef33c --- /dev/null +++ b/private/oleutest/perf/perfuuid/perfsrvi.c @@ -0,0 +1,24 @@ +#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}}; diff --git a/private/oleutest/perf/perfuuid/sources b/private/oleutest/perf/perfuuid/sources new file mode 100644 index 000000000..051a17b4a --- /dev/null +++ b/private/oleutest/perf/perfuuid/sources @@ -0,0 +1,68 @@ +!IF 0 + +Copyright (c) 1989 Microsoft Corporation + +Module Name: + + sources. + +Abstract: + + This file specifies the target component being built and the list of + sources files needed to build that component. Also specifies optional + compiler switches and libraries that are unique for the component being + built. + + +Author: + + Dean Edwards (DeanE) 11-Jan-1993 + +!ENDIF + +MAJORCOMP= cairole +MINORCOMP= com + +# +# This is the name of the target built from the source files specified +# below. The name should include neither the path nor the file extension. +# + +TARGETNAME= perfuuid + +# +# This specifies where the target is to be built. A private target of +# type LIBRARY or DYNLINK should go to obj, whereas a public target of +# type LIBRARY or DYNLINK should go to $(BASEDIR)\public\sdk\lib. +# + +TARGETPATH= obj + +# +# This specifies the type of the target, such as PROGRAM, DYNLINK, LIBRARY, +# etc. +# + +TARGETTYPE= LIBRARY + +INCLUDES= \ + ..\.; \ + $(BASEDIR)\public\sdk\inc; \ + $(BASEDIR)\private\cinc + +C_DEFINES= $(C_DEFINES) + +BLDCRT= 1 + +SOURCES= iperf_i.c \ + perfsrvi.c + +UMTYPE= windows +UMAPPL= +UMTEST= +UMLIBS= + +USE_LIBCMT= 1 + +PRECOMPILED_INCLUDE= + |