-
Notifications
You must be signed in to change notification settings - Fork 21
[DevTools] Header to Function converter
Yaroslav Kibysh edited this page Jun 29, 2020
·
2 revisions
This program converts header to a working function (normal stub).
- Start
HeaderToFunction.exe
- Requires .NET Framework 4.0
- Insert any function definition to the source box:
HWND
WINAPI
CreateWindowExW(
DWORD dwExStyle,
LPCWSTR lpClassName,
LPCWSTR lpWindowName,
DWORD dwStyle,
int X,
int Y,
int nWidth,
int nHeight,
HWND hWndParent ,
HMENU hMenu,
HINSTANCE hInstance,
LPVOID lpParam);
- Configure program and hit convert to get a result:
HWND WINAPI CreateWindowExW_WCECL(
DWORD dwExStyle,
LPCWSTR lpClassName,
LPCWSTR lpWindowName,
DWORD dwStyle,
int X,
int Y,
int nWidth,
int nHeight,
HWND hWndParent,
HMENU hMenu,
HINSTANCE hInstance,
LPVOID lpParam)
{
auto result = CreateWindowExW(
dwExStyle,
lpClassName,
lpWindowName,
dwStyle,
X,
Y,
nWidth,
nHeight,
hWndParent,
hMenu,
hInstance,
lpParam);
return result;
}
- Use your brand new code in WCECL.