[인스톨쉴드] 아이콘 Refresh 하는 방법 SHChangeNotify()
installer 2011. 10. 28. 22:40
레지스트리로 아이콘을 연결한 후 바로 아이콘을 적용시키기 위해서는 SHChangeNotify()를 사용해서 Refresh 시켜줘야 된다. 인스톨쉴드 스크립트를 열고 아래와 같이 입력한다 Colored By Color Scripter™1234567891011121314151617#include "ifx.h" #include "winapi.h"#define DLL_FILE "Shell32.dll"#define SHCNE_ASSOCCHANGED 0x08000000#define SHCNF_IDLIST 0x0000prototype Shell32.SHChangeNotify(LONG, LONG, POINTER, POINTER); //-----------------------------------------------..