PB integrated Windows API and API Viewer
Posted: Sat Oct 28, 2023 3:10 pm
..\PureBasic\Compilers\APIFunctionListing.txt contains a List of Windows API Functions.
Is this the actual list of Windows APi integrated in PB?
--------------------------------------------------------------------------------------
ActiveVB.de provides an API Viewer which can directly export the API Definition as PB Code
Here the example for CreateWindowExA created from ApiViewer!
OpenLibrary(0,"user32.dll")
CallFunction(0,"CreateWindowExA",dwExStyle.l, lpClassName.String, lpWindowName.String, dwStyle.l, x.l, y.l, nWidth.l, nHeight.l, hWndParent.l, hMenu.l, hInstance.l, lpParam.l)
You can download it from
https://activevb.de/rubriken/apiviewer/ ... ereng.html
Is this the actual list of Windows APi integrated in PB?
--------------------------------------------------------------------------------------
ActiveVB.de provides an API Viewer which can directly export the API Definition as PB Code
Here the example for CreateWindowExA created from ApiViewer!
OpenLibrary(0,"user32.dll")
CallFunction(0,"CreateWindowExA",dwExStyle.l, lpClassName.String, lpWindowName.String, dwStyle.l, x.l, y.l, nWidth.l, nHeight.l, hWndParent.l, hMenu.l, hInstance.l, lpParam.l)
You can download it from
https://activevb.de/rubriken/apiviewer/ ... ereng.html