mirror of https://github.com/tongzx/nt5src
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.
20 lines
542 B
20 lines
542 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1998
|
|
//
|
|
// File: strings.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef __strings_h
|
|
#define __strings_h
|
|
|
|
HRESULT LocalAllocString(LPTSTR* ppResult, LPCTSTR pString);
|
|
HRESULT LocalAllocStringLen(LPTSTR* ppResult, UINT cLen);
|
|
void LocalFreeString(LPTSTR* ppString);
|
|
|
|
HRESULT StrRetFromString(LPSTRRET lpStrRet, LPCWSTR pString);
|
|
|
|
#endif
|