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.

56 lines
849 B

  1. /*++
  2. Copyright(c) 1995 Microsoft Corporation
  3. MODULE NAME
  4. table.c
  5. ABSTRACT
  6. Generic hash table manipulation routines.
  7. AUTHOR
  8. Anthony Discolo (adiscolo) 28-Jul-1995
  9. REVISION HISTORY
  10. --*/
  11. #include <ndis.h>
  12. #include <cxport.h>
  13. #include <tdi.h>
  14. #include <tdikrnl.h>
  15. #include <tdistat.h>
  16. #include <tdiinfo.h>
  17. #include <acd.h>
  18. #include <acdapi.h>
  19. #include "acddefs.h"
  20. #include "mem.h"
  21. #include "debug.h"
  22. //
  23. // The maximum number of allocated
  24. // objects we allocate from outside
  25. // our zones.
  26. //
  27. #define MAX_ALLOCATED_OBJECTS 100
  28. //
  29. // Rounding up macro.
  30. //
  31. #define ROUNDUP(n, b) (((n) + ((b) - 1)) & ~((b) - 1))
  32. NTSTATUS
  33. InitializeObjectAllocator()
  34. {
  35. return STATUS_SUCCESS;
  36. } // InitializeObjectAllocator
  37. VOID
  38. FreeObjectAllocator()
  39. {
  40. } // FreeObjectAllocator