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.

59 lines
859 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. gfrapiu.h
  5. Abstract:
  6. Contains prototypes etc. for gfrapiu.c
  7. Author:
  8. Richard L Firth (rfirth) 19-Nov-1994
  9. Revision History:
  10. 19-Nov-1994
  11. Created
  12. --*/
  13. #if defined(__cplusplus)
  14. extern "C" {
  15. #endif
  16. //
  17. // prototypes
  18. //
  19. DWORD
  20. TestLocatorType(
  21. IN LPCSTR Locator,
  22. IN DWORD TypeMask
  23. );
  24. DWORD
  25. GetAttributes(
  26. IN GOPHER_ATTRIBUTE_ENUMERATOR Enumerator,
  27. IN DWORD CategoryId,
  28. IN DWORD AttributeId,
  29. IN LPCSTR AttributeName,
  30. IN LPSTR InBuffer,
  31. IN DWORD InBufferLength,
  32. OUT LPBYTE OutBuffer,
  33. IN DWORD OutBufferLength,
  34. OUT LPDWORD CharactersReturned
  35. );
  36. LPSTR
  37. MakeAttributeRequest(
  38. IN LPSTR Selector,
  39. IN LPSTR Attribute
  40. );
  41. #if defined(__cplusplus)
  42. }
  43. #endif