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.

31 lines
381 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. bstrutil.h
  5. Abstract:
  6. Declares B string utility methods.
  7. --*/
  8. INT SysStringAnsiLen (
  9. IN BSTR bstr
  10. );
  11. HRESULT BStrToStream (
  12. IN LPSTREAM pIStream,
  13. IN INT nChar,
  14. IN BSTR bstr
  15. );
  16. HRESULT BStrFromStream (
  17. IN LPSTREAM pIStream,
  18. IN INT nChar,
  19. OUT BSTR *pbstr
  20. );