<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <blockquote type="cite">
      <pre style="font-family: monospace, Consolas, "Microsoft Yahei"; color: rgb(0, 0, 0); font-size: medium; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; overflow-wrap: break-word; white-space: pre-wrap;">+BOOL inline imagelist_has_alpha( HIMAGELIST himl, UINT index )
+{
+    return himl->has_alpha && himl->has_alpha[index];
+}</pre>
    </blockquote>
    This should be a static function. If you really need it for other
    files later,<br>
    you should add it to the comctl32 private header instead of the
    public header<br>
    commctrl.h. You can also remove inline as compilers should
    automatically decide<br>
    it for you.<br>
    <br>
    Thanks,<br>
    Zhiyi<br>
  </body>
</html>