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
757 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: C O N N U T I L . H
  7. //
  8. // Contents:
  9. //
  10. // Notes:
  11. //
  12. // Author: tongl 29 April 1999
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. EXTERN_C
  17. HRESULT APIENTRY HrLaunchConnection(const GUID& guidId);
  18. HIMAGELIST WINAPI ImageList_LoadImageAndMirror(
  19. HINSTANCE hi,
  20. LPCTSTR lpbmp,
  21. int cx,
  22. int cGrow,
  23. COLORREF crMask,
  24. UINT uType,
  25. UINT uFlags);
  26. #define ImageList_LoadBitmapAndMirror(hi, lpbmp, cx, cGrow, crMask) \
  27. ImageList_LoadImageAndMirror(hi, lpbmp, cx, cGrow, crMask, IMAGE_BITMAP, 0)