blob: d632951d66eff53d1d71307e90e95504b6e5efcc (
plain)
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
27
28
29
30
|
/*++
Copyright (c) 1990-2000 Microsoft Corporation All Rights Reserved
Module Name:
public.h
Abstract:
This module contains the common declarations shared by driver
and user applications.
Environment:
user and kernel
--*/
#define WHILE(a) \
__pragma(warning(suppress:4127)) while(a)
//
// Define an Interface Guid so that app can find the device and talk to it.
//
DEFINE_GUID (GUID_DEVINTERFACE_ECHO,
0xcdc35b6e, 0xbe4, 0x4936, 0xbf, 0x5f, 0x55, 0x37, 0x38, 0xa, 0x7c, 0x1a);
// {CDC35B6E-0BE4-4936-BF5F-5537380A7C1A}
|