Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
664 B

  1. /******************************************************************************
  2. * BeVersion.h *
  3. *-------------*
  4. *
  5. *------------------------------------------------------------------------------
  6. * Copyright (C) 1998 Entropic, Inc
  7. * Copyright (C) 2000 Microsoft Corporation Date: 03/02/00
  8. * All Rights Reserved
  9. *
  10. ********************************************************************* PACOG ***/
  11. #ifndef __BEVERSION_H_
  12. #define __BEVERSION_H_
  13. #include <stdio.h>
  14. class BendVersion
  15. {
  16. public:
  17. void WriteVersionString( FILE* fp);
  18. bool CheckVersionString( FILE* fp);
  19. private:
  20. static const char * const pszVersion;
  21. };
  22. #endif