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.
|
|
/******************************************************************************
* BeVersion.h * *-------------* * *------------------------------------------------------------------------------ * Copyright (C) 1998 Entropic, Inc * Copyright (C) 2000 Microsoft Corporation Date: 03/02/00 * All Rights Reserved * ********************************************************************* PACOG ***/ #ifndef __BEVERSION_H_
#define __BEVERSION_H_
#include <stdio.h>
class BendVersion { public: void WriteVersionString( FILE* fp); bool CheckVersionString( FILE* fp);
private: static const char * const pszVersion; };
#endif
|