home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / FASTFILE / FFENT.H < prev    next >
C/C++ Source or Header  |  1996-08-28  |  687b  |  20 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995-1996 Microsoft Corporation.  All Rights Reserved.
  4.  *
  5.  *  File:       ffent.h
  6.  *  Content:    FastFile entry definition (internal)
  7.  *
  8.  * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
  9.  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
  10.  * WARRANTIES OF MERCHANTBILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
  11.  *
  12.  ***************************************************************************/
  13.  
  14. #pragma pack(1)
  15. typedef struct {
  16.     long        offset;
  17.     char        name[13];
  18. } FILEENTRY, *LPFILEENTRY;
  19. #pragma pack()
  20.