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.

37 lines
595 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. nwpkstr.h
  5. Abstract:
  6. Header for NetWare string packing library routines.
  7. Author:
  8. Rita Wong (ritaw) 2-Mar-1993
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _NW_PKSTR_INCLUDED_
  14. #define _NW_PKSTR_INCLUDED_
  15. BOOL
  16. NwlibCopyStringToBuffer(
  17. IN LPCWSTR SourceString OPTIONAL,
  18. IN DWORD CharacterCount,
  19. IN LPCWSTR FixedDataEnd,
  20. IN OUT LPWSTR *EndOfVariableData,
  21. OUT LPWSTR *VariableDataPointer
  22. );
  23. #endif // _NW_PKSTR_INCLUDED_