home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Emulation_Include_Files / vioreg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  1.1 KB  |  32 lines

  1. /*******************************************************************************
  2.  *
  3.  *  File:
  4.  *    VIOREG.H
  5.  *
  6.  *  Description:
  7.  *    Declaration of functions that register objects with the VIO API
  8.  *
  9.  *  Original Author:
  10.  *    Paul Horenberger
  11.  *
  12.  *  Modification History:
  13.  *  $Log:   H:/AUTOPC/HOSTSW/PVCSARCH/INCLUDE/vioreg.h_v  $
  14.  * 
  15.  *    Rev 1.0   May 28 1998 15:07:32   PHorenberger
  16.  * Prototypes for the VIO registration functions
  17.  *
  18.  *  Copyright (C) 1998 Vetronix Corp.
  19.  ******************************************************************************/
  20. #if (!defined __VIOREG_H)
  21. #define __VIOREG_H 1
  22.  
  23. // Register a device with the API 
  24. STDAPI VIORegisterDevice(REFCLSID rclsidDevice, BOOL bRegister);
  25. // Register the minidriver object with the device object that uses it
  26. STDAPI VIORegisterMinidriver(REFCLSID rclsidDevice, REFCLSID rclsidMiniDriver,
  27.                           BOOL bRegister);
  28. // Register a minidriver management object with the API
  29. STDAPI VIORegisterMiniDriverMgr(REFCLSID rclsidMiniDriverMgr, BOOL bRegister);
  30.  
  31. #endif // include sentry
  32.