diff options
Diffstat (limited to '')
-rw-r--r-- | private/nw/inc/nwpkstr.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/private/nw/inc/nwpkstr.h b/private/nw/inc/nwpkstr.h new file mode 100644 index 000000000..ae7f7e96e --- /dev/null +++ b/private/nw/inc/nwpkstr.h @@ -0,0 +1,37 @@ +/*++ + +Copyright (c) 1993 Microsoft Corporation + +Module Name: + + nwpkstr.h + +Abstract: + + Header for NetWare string packing library routines. + +Author: + + Rita Wong (ritaw) 2-Mar-1993 + +Environment: + + User Mode - Win32 + +Revision History: + +--*/ + +#ifndef _NW_PKSTR_INCLUDED_ +#define _NW_PKSTR_INCLUDED_ + +BOOL +NwlibCopyStringToBuffer( + IN LPCWSTR SourceString OPTIONAL, + IN DWORD CharacterCount, + IN LPCWSTR FixedDataEnd, + IN OUT LPWSTR *EndOfVariableData, + OUT LPWSTR *VariableDataPointer + ); + +#endif // _NW_PKSTR_INCLUDED_ |