// DLL에서 함수를 호출하기 위한 함수 선언
/*
BOOL SetLayeredWindowAttributes(
HWND hwnd, // handle to the layered window
COLORREF crKey, // specifies the color key
BYTE bAlpha, // value for the blend function
DWORD dwFlags // action
);
*/
typedef BOOL(WINAPI *SLWA)(HWND, COLORREF, BYTE, DWORD);