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.
19 lines
485 B
19 lines
485 B
//
|
|
// delay.h
|
|
//
|
|
|
|
#ifndef DELAY_H
|
|
#define DELAY_H
|
|
|
|
// comctrl32
|
|
|
|
HIMAGELIST WINAPI CUIImageList_Create(int cx, int cy, UINT flags, int cInitial, int cGrow);
|
|
#define ImageList_Create CUIImageList_Create
|
|
|
|
BOOL WINAPI CUIImageList_Destroy(HIMAGELIST himl);
|
|
#define ImageList_Destroy CUIImageList_Destroy
|
|
|
|
int WINAPI CUIImageList_ReplaceIcon(HIMAGELIST himl, int i, HICON hicon);
|
|
#define ImageList_ReplaceIcon CUIImageList_ReplaceIcon
|
|
|
|
#endif // DELAY_H
|