Source code of Windows XP (NT5)
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.

58 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. RxRemUtl.h
  5. Abstract:
  6. This file contains types and prototypes for RpcXlate (Rx) remote utility
  7. APIs.
  8. Author:
  9. John Rogers (JohnRo) 03-Apr-1991
  10. Environment:
  11. Portable to any flat, 32-bit environment. (Uses Win32 typedefs.)
  12. Requires ANSI C extensions: slash-slash comments, long external names.
  13. Notes:
  14. You must include <windef.h> and <lmcons.h> before this file.
  15. Revision History:
  16. 03-Apr-1991 JohnRo
  17. Created.
  18. 10-Apr-1991 JohnRo
  19. Use transitional Unicode types.
  20. 16-Apr-1991 JohnRo
  21. Don't include windef.h and lmcons.h directly, to avoid conflicts with
  22. MIDL-generated code.
  23. 03-May-1991 JohnRo
  24. Don't use NET_API_FUNCTION for non-APIs.
  25. --*/
  26. #ifndef _RXREMUTL_
  27. #define _RXREMUTL_
  28. ////////////////////////////////////////////////////////////////
  29. // Individual routines, for APIs which can't be table driven: //
  30. ////////////////////////////////////////////////////////////////
  31. // Add prototypes for other APIs here, in alphabetical order.
  32. NET_API_STATUS
  33. RxNetRemoteTOD (
  34. IN LPTSTR UncServerName,
  35. OUT LPBYTE *BufPtr
  36. );
  37. #endif // ndef _RXREMUTL_