mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1000 B
61 lines
1000 B
/*++
|
|
|
|
Copyright (c) 1999, Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sample\samplecfg.h
|
|
|
|
Abstract:
|
|
|
|
The file contains the include file for samplecfg.c.
|
|
|
|
--*/
|
|
|
|
// sample global configuration
|
|
|
|
DWORD
|
|
SgcMake (
|
|
OUT PBYTE *ppbStart,
|
|
OUT PDWORD pdwSize
|
|
);
|
|
|
|
DWORD
|
|
SgcShow (
|
|
IN FORMAT fFormat
|
|
);
|
|
|
|
DWORD
|
|
SgcUpdate (
|
|
IN PIPSAMPLE_GLOBAL_CONFIG pigcNew,
|
|
IN DWORD dwBitVector
|
|
);
|
|
|
|
|
|
|
|
// sample interface configuration
|
|
|
|
DWORD
|
|
SicMake (
|
|
OUT PBYTE *ppbStart,
|
|
OUT PDWORD pdwSize
|
|
);
|
|
|
|
DWORD
|
|
SicShowAll (
|
|
IN FORMAT fFormat
|
|
);
|
|
|
|
DWORD
|
|
SicShow (
|
|
IN FORMAT fFormat,
|
|
IN LPCWSTR pwszInterfaceGuid
|
|
);
|
|
|
|
DWORD
|
|
SicUpdate (
|
|
IN PWCHAR pwszInterfaceGuid,
|
|
IN PIPSAMPLE_IF_CONFIG piicNew,
|
|
IN DWORD dwBitVector,
|
|
IN BOOL bAdd
|
|
);
|