home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / ntmsmli.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  852b  |  42 lines

  1. /*++
  2.  
  3.   Copyright (c) 1996-1997 Microsoft Corporation
  4.   Copyright (c) 1996-1997 Highground Systems
  5.  
  6.   Module Name:
  7.  
  8.     NtmsMli.h
  9.  
  10.   Abstract:
  11.  
  12.     This module contains the definitions for the MediaLabelInfo structure. This structure contains
  13.     information that allows NTMS to identify media. This structure must be returned by media label
  14.     libraries.
  15.  
  16.   Author:
  17.  
  18.     Kevin Fitzgerald (kfitzgerald@highground.com) 21-04-1997
  19.  
  20.   Revision History:
  21.  
  22. --*/
  23.  
  24. #ifndef _INCL_NTMSMLI_H_
  25. #define _INCL_NTMSMLI_H_
  26.  
  27. #include <windows.h>
  28.  
  29. #define NTMSMLI_MAXTYPE     64
  30. #define NTMSMLI_MAXIDSIZE   256
  31. #define NTMSMLI_MAXAPPDESCR 256
  32.  
  33. typedef struct 
  34. {
  35.     WCHAR    LabelType[NTMSMLI_MAXTYPE] ;
  36.     DWORD    LabelIDSize ;
  37.     BYTE    LabelID[NTMSMLI_MAXIDSIZE] ;
  38.     WCHAR    LabelAppDescr[NTMSMLI_MAXAPPDESCR] ;
  39. } MediaLabelInfo, *pMediaLabelInfo ;
  40.  
  41. #endif
  42.