Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (c) 1999, Microsoft Corporation
  3. Module Name:
  4. sample\samplecfg.h
  5. Abstract:
  6. The file contains the include file for samplecfg.c.
  7. --*/
  8. // sample global configuration
  9. DWORD
  10. SgcMake (
  11. OUT PBYTE *ppbStart,
  12. OUT PDWORD pdwSize
  13. );
  14. DWORD
  15. SgcShow (
  16. IN FORMAT fFormat
  17. );
  18. DWORD
  19. SgcUpdate (
  20. IN PIPSAMPLE_GLOBAL_CONFIG pigcNew,
  21. IN DWORD dwBitVector
  22. );
  23. // sample interface configuration
  24. DWORD
  25. SicMake (
  26. OUT PBYTE *ppbStart,
  27. OUT PDWORD pdwSize
  28. );
  29. DWORD
  30. SicShowAll (
  31. IN FORMAT fFormat
  32. );
  33. DWORD
  34. SicShow (
  35. IN FORMAT fFormat,
  36. IN LPCWSTR pwszInterfaceGuid
  37. );
  38. DWORD
  39. SicUpdate (
  40. IN PWCHAR pwszInterfaceGuid,
  41. IN PIPSAMPLE_IF_CONFIG piicNew,
  42. IN DWORD dwBitVector,
  43. IN BOOL bAdd
  44. );