home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / SKELETON / Include / sk_ioctl.h
C/C++ Source or Header  |  2002-04-26  |  1KB  |  37 lines

  1. /* $Id: sk_ioctl.h,v 1.2 2002/04/26 23:09:40 smilcke Exp $ */
  2.  
  3. /*
  4.  * bt_ioctl.h
  5.  * Autor:               Stefan Milcke
  6.  * Erstellt am:         28.03.2002
  7.  * Letzte Aenderung am: 28.03.2002
  8.  *
  9. */
  10.  
  11. #ifndef SK_IOCTL_H_INCLUDED
  12. #define SK_IOCTL_H_INCLUDED
  13.  
  14. #pragma pack(1)
  15.  
  16. #define SKIOCCAT_GLO       0x80
  17.  
  18. #define SKIOCCAT_BTV       0x81
  19.  
  20. /******************************************************************************/
  21. /* global ioctl functions                                                     */
  22. /******************************************************************************/
  23. //--------------------------- global get driver info ---------------------------
  24. #define SKIOCFN_GLO_GETDRIVERINFO                           0x01
  25. typedef struct _BTIOCDP_GLO_GETDRIVERINFO
  26. {
  27.  ULONG ulVersionMajor;
  28.  ULONG ulVersionMinor;
  29.  ULONG ulBuildLevel;
  30.  CHAR vendor[32];
  31.  ULONG ulNumModules;
  32.  ULONG ulV4LXNumDevices;
  33. } SKIOCDP_GLO_GETDRIVERINFO,*PSKIOCDP_GLO_GETDRIVERINFO;
  34. #pragma pack()
  35.  
  36. #endif //SK_IOCTL_H_INCLUDED
  37.