Source code of Windows XP (NT5)
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
814 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows NT Security
  4. // Copyright (C) Microsoft Corporation, 1997 - 1999
  5. //
  6. // File: dbutils.h
  7. //
  8. // Contents: utilities header
  9. //
  10. // History: 07-Feb-00 reidk Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #if !defined(__CATDBUTILS_H__)
  14. #define __CATDBUTILS_H__
  15. LPSTR _CatDBConvertWszToSz(LPCWSTR pwsz);
  16. LPWSTR _CATDBAllocAndCopyWSTR(LPCWSTR pwsz);
  17. LPWSTR _CATDBAllocAndCopyWSTR2(LPCWSTR pwsz1, LPCWSTR pwsz2);
  18. BOOL _CATDBStrCatWSTR(LPWSTR *ppwszAddTo, LPCWSTR pwszAdd);
  19. BOOL _CATDBStrCat(LPSTR *ppszAddTo, LPCSTR pszAdd);
  20. LPWSTR _CATDBConstructWSTRPath(LPCWSTR pwsz1, LPCWSTR pwsz2);
  21. LPSTR _CATDBConstructPath(LPCSTR psz1, LPCSTR psz2);
  22. #endif