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.

26 lines
726 B

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1996-1997 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: apphack.h
  6. * Content: app compatiblity hacking code
  7. * History:
  8. * Date By Reason
  9. * ==== == ======
  10. * 18-sep-96 jeffno initial implementation after CraigE
  11. *
  12. ***************************************************************************/
  13. typedef struct APPHACKS
  14. {
  15. struct APPHACKS *lpNext;
  16. LPSTR szName;
  17. DWORD dwAppId;
  18. DWORD dwFlags;
  19. } APPHACKS, *LPAPPHACKS;
  20. extern BOOL bReloadReg;
  21. extern BOOL bHaveReadReg;
  22. extern LPAPPHACKS lpAppList;
  23. extern LPAPPHACKS *lpAppArray;
  24. extern DWORD dwAppArraySize;