Files
firestorm/build-env/stlnative/NTMSMLI.H
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

42 lines
852 B
C++

/*++
Copyright (c) 1996-1997 Microsoft Corporation
Copyright (c) 1996-1997 Highground Systems
Module Name:
NtmsMli.h
Abstract:
This module contains the definitions for the MediaLabelInfo structure. This structure contains
information that allows NTMS to identify media. This structure must be returned by media label
libraries.
Author:
Kevin Fitzgerald (kfitzgerald@highground.com) 21-04-1997
Revision History:
--*/
#ifndef _INCL_NTMSMLI_H_
#define _INCL_NTMSMLI_H_
#include <windows.h>
#define NTMSMLI_MAXTYPE 64
#define NTMSMLI_MAXIDSIZE 256
#define NTMSMLI_MAXAPPDESCR 256
typedef struct
{
WCHAR LabelType[NTMSMLI_MAXTYPE] ;
DWORD LabelIDSize ;
BYTE LabelID[NTMSMLI_MAXIDSIZE] ;
WCHAR LabelAppDescr[NTMSMLI_MAXAPPDESCR] ;
} MediaLabelInfo, *pMediaLabelInfo ;
#endif