Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
18
Src/Plugins/Input/in_cdda/grabwnd.h
Normal file
18
Src/Plugins/Input/in_cdda/grabwnd.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef NULLSOFT_GRAB_WINDOW_HEADER
|
||||
#define NULLSOFT_GRAB_WINDOW_HEADER
|
||||
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
typedef void (CALLBACK *GRABCB)(HWND /*hwnd*/, CREATESTRUCT* /*lpcs*/, HWND* /*phwndInsertAfter*/, ULONG_PTR /*user*/);
|
||||
|
||||
BOOL BeginGrabCreateWindow(LPCWSTR pszClassName, LPCWSTR pszTitle, HWND hwndParent, GRABCB callback, ULONG_PTR user); // you can skip fields that you don't need
|
||||
void EndGrabCreateWindow(void); //always call it when you done to gurantee proper shutdown
|
||||
|
||||
|
||||
|
||||
#endif //NULLSOFT_GRAB_WINDOW_HEADER
|
Loading…
Add table
Add a link
Reference in a new issue