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.

24 lines
490 B

  1. // utils.h
  2. #ifndef _UTILS_H
  3. #define _UTILS_H
  4. #include <commctrl.h>
  5. VOID Trace(LPCTSTR Format, ...);
  6. //
  7. // Image list helpers
  8. //
  9. HIMAGELIST CreateImageList(INT iImageWidth,
  10. INT iImageHeight,
  11. INT iMask,
  12. INT iNumIcons);
  13. BOOL AddIconToImageList(HINSTANCE hInstance,
  14. INT IconResourceID,
  15. HIMAGELIST hImageList,
  16. INT *pIconIndex);
  17. #endif