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.

53 lines
1.2 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: layout.hxx
  7. //
  8. // Contents: Common header file for layout tool
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 12-Feb-96 PhilipLa Created
  15. // 20-Feb-96 SusiA Added StgOpenLayoutDocfile
  16. // 20-Jun-96 SusiA Add Cruntime functions
  17. //
  18. //----------------------------------------------------------------------------
  19. #ifndef __LAYOUT_HXX__
  20. #define __LAYOUT_HXX__
  21. #ifdef SWEEPER
  22. HRESULT StgOpenLayoutDocfile(OLECHAR const *pwcsDfName,
  23. DWORD grfMode,
  24. DWORD reserved,
  25. IStorage **ppstgOpen);
  26. #endif
  27. int Laylstrcmp (
  28. const wchar_t * src,
  29. const wchar_t * dst);
  30. wchar_t * Laylstrcat (
  31. wchar_t * dst,
  32. const wchar_t * src );
  33. wchar_t * Laylstrcpy(
  34. wchar_t * dst,
  35. const wchar_t * src );
  36. wchar_t * Laylstrcpyn (
  37. wchar_t * dest,
  38. const wchar_t * source,
  39. size_t count);
  40. size_t Laylstrlen (
  41. const wchar_t * wcs);
  42. #endif // #ifndef __LAYOUT_HXX__