blob: 039f586e2a5c3fc62017ceb4c6eed2bf56935b8a (
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
31
32
33
34
|
//***************************************************************************
//
// def.mof
//
// Module: iScsi Discovery api
//
// Purpose:
//
// Copyright (c) 2001 Microsoft Corporation
//
//***************************************************************************
//
// Cause headers to be generated from common.mof
//
#define GENERATE_HEADER TRUE
#define MODULE_HEADER \
"\n" \
"//***************************************************************************\n" \
"//\n" \
"// iscsidef.h\n" \
"// \n" \
"// Module: iScsi Discovery api\n" \
"//\n" \
"// Purpose: Internal header defining interface between user mode discovery\n" \
"// api dll and HBA driver miniport.\n" \
"//\n" \
"// Copyright (c) 2001 Microsoft Corporation\n" \
"//\n" \
"//***************************************************************************\n\n"
#include "common.mof"
|