Dident.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. //---------------------------------------------------------------------------
  2. //
  3. // dident.h - This file contains the class definitions for misc file stuff
  4. //
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. #ifndef DIDENT_H
  9. #define DIDENT_H
  10. //---------------------------------------------------------------------------
  11. // Include files
  12. //---------------------------------------------------------------------------
  13. #define ID_SIZE 8 // enough for an old DOS file name
  14. class IDString;
  15. typedef IDString *IDStringPtr;
  16. class FullPathFileName;
  17. typedef FullPathFileName *FullPathFileNamePtr;
  18. //---------------------------------------------------------------------------
  19. #endif
  20. //---------------------------------------------------------------------------
  21. //
  22. // Edit Log
  23. //
  24. // $Log$
  25. //
  26. //---------------------------------------------------------------------------