Gdip
Gdip copied to clipboard
problem including gdip.ahk
Not sure about your situation but I solve this problem after I separate the line.
In my case, I change
#Include Gdip.ahk F1:: WinGet, hWnd, ID, A hbm := Gdip_BitmapFromHWND(hWnd) Gdip_SetBrightness(hbm, 0.5) Gdip_BitmapToHWND(hbm, hWnd) return
To
#Include Gdip.ahk
F1:: WinGet, hWnd, ID, A hbm := Gdip_BitmapFromHWND(hWnd) Gdip_SetBrightness(hbm, 0.5) Gdip_BitmapToHWND(hbm, hWnd) return