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.

33 lines
513 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. eZippy Main
  5. Abstract:
  6. Global variables and functions for zippy.
  7. Author:
  8. Marc Reyhner 8/28/2000
  9. --*/
  10. #ifndef __EZIPPY_H__
  11. #define __EZIPPY_H__
  12. #define MAX_STR_LEN 2048
  13. #define ZIPPY_FONT _T("Courier New")
  14. #define ZIPPY_FONT_SIZE 8
  15. #define ZIPPY_REG_KEY _T("SOFTWARE\\Microsoft\\eZippy")
  16. extern HINSTANCE g_hInstance;
  17. INT LoadStringSimple(UINT uID,LPTSTR lpBuffer);
  18. #endif