标签:style blog http color os art
1 // 声明 2 #if defined (__cplusplus) 3 extern "C"{ 4 #endif 5 WINUSERAPI BOOL WINAPI FlashWindowEx(PFLASHWINFO pfwi); 6 #if defined (__cplusplus) 7 }; 8 #endif 9 10 // 调用 11 FLASHWINFO fwi; 12 fwi.cbSize = sizeof(FLASHWINFO); 13 fwi.dwFlags = 3; // 1 闪烁标题栏2 闪烁任务栏3 Both 14 fwi.dwTimeout = 100; 15 fwi.hwnd = hwnd; 16 fwi.uCount = 10; 17 FlashWindowEx(&fwi);
标签:style blog http color os art
原文地址:http://www.cnblogs.com/TaoyzDream/p/3698648.html