Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
WM_CAP_SET_VIDEOFORMAT
wParam = (WPARAM) (wSize);
lParam = (LPARAM) (LPVOID) (psVideoFormat);
For the message [b][blue]WM_CAP_SET_VIDEOFORMAT[/blue][/b]
[b][blue]wParam[/blue][/b] is known as [b][blue]wSize
lParam[/blue][/b] is known as [b][blue]psVideoFormat[/blue][/b]
[b][blue]wSize[/blue][/b] (the real name for wParam for this particular message) contains the [b][blue]size of the structure pointed to by psVideoFormat[/blue][/b]
[b][blue]psVideoFormat[/blue][/b] (the real name for lParam for this particular message) is a [b][blue]pointer to a BITMAPINFO structure[/blue][/b]
Public Structure BITMAPINFO
Public Header As BITMAPINFOHEADER
Public Bits() As Integer '(Colors)
End Structure
[blue]
Public Type BITMAPINFO
bmiHeader As BITMAPINFOHEADER
bmiColors As RGBQUAD
End Type[/blue]