/* * B U F F E R . H * * Data buffer processing * * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved */ #ifndef _BUFFER_H_ #define _BUFFER_H_ #ifdef _DAVCDATA_ #error "buffer.h uses throwing allocators" #endif // Include the non-safe/throwing allocators #include // Include safe buffer definition header // #include // AppendChainedSz ----------------------------------------------------------- // inline LPCWSTR AppendChainedSz (ChainedStringBuffer& sb, LPCWSTR pwsz) { return sb.AppendWithNull (pwsz); } #endif // _BUFFER_H_