Leaked source code of windows server 2003
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.

15 lines
364 B

  1. #ifndef __C_UTIL_H__
  2. #define __C_UTIL_H__
  3. class CUtil
  4. {
  5. public:
  6. static BOOL IsWinNT(VOID);
  7. static BOOL IsWinNT4(VOID);
  8. static BOOL IsWinNT5(VOID);
  9. static BOOL IsWin9x(VOID);
  10. static BOOL IsWin95(VOID);
  11. static BOOL IsWin98(VOID);
  12. static BOOL IsHydra(VOID);
  13. static INT GetWINDIR(LPTSTR lpstr, INT len);
  14. };
  15. #endif //__C_UTIL_H__