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.

17 lines
343 B

  1. //
  2. // Multi SZ wrapper class
  3. //
  4. #include "cstring.h"
  5. #include "tptrlist.h"
  6. class CMultiSz : public TPtrList<CString>
  7. {
  8. public:
  9. HRESULT Marshal(void *&rpBuffer, DWORD &cBuffer);
  10. HRESULT Unmarshal(void *pBuffer);
  11. bool Find(LPCWSTR pcwszValue, bool fCaseSensitive);
  12. };
  13. typedef TPtrListEnum<CString> CMultiSzEnum;