Windows NT 4.0 source code leak
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.

27 lines
373 B

4 years ago
  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. loccahe.h
  5. Abstract:
  6. locator cache datastructures.
  7. Author:
  8. --*/
  9. typedef struct _CacheNode {
  10. struct _CachedNode * Next;
  11. struct _CachedNode * Previous;
  12. UICHAR ServerName[UNCLEN+1];
  13. } CACHEDNODE;
  14. typedef CACHEDNODE * PCACHEDNODE;
  15. #define CACHESIZE 4