Leaked source code of windows server 2003
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.

36 lines
532 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. vxd32.h
  5. Abstract:
  6. Author:
  7. William Ingle (bukku) 04-Apr-2001
  8. Revision History:
  9. 04-Apr-2001 billi Created
  10. --*/
  11. #pragma once
  12. #define VDHCP_Device_ID 0x049A
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. DWORD OsOpenVxdHandle( CHAR* VxdName, WORD VxdId );
  17. VOID OsCloseVxdHandle( DWORD VxdHandle );
  18. INT OsSubmitVxdRequest( DWORD VxdHandle, INT OpCode, LPVOID Param, INT ParamLength );
  19. #ifdef __cplusplus
  20. }
  21. #endif