home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / security / winnt / sockauth / collect.h < prev    next >
Text File  |  1997-10-08  |  307b  |  21 lines

  1. /*++
  2.  
  3. Copyright 1996-1997 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     collect.h
  8.  
  9. Abstract:
  10.  
  11.     Functions for a simple collection
  12.  
  13. Revision History:
  14.  
  15. --*/
  16.  
  17. BOOL GetEntry (DWORD dwKey, PVOID *ppData);
  18. BOOL AddEntry (DWORD dwKey, PVOID pData);
  19. BOOL DeleteEntry (DWORD dwKey, PVOID *ppData);
  20.  
  21.