Qbasicnews.com

Full Version: VB headers?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm a total ignorant in VB but....

It exists something like VB headers for the Windows API?

In case they exist, would they be easier to por to FB than the C headers?

If yes, could someone point me to a place where I can download them?
Check this:

http://www.activevb.de/rubriken/apiviewe...ereng.html

Download this proggie. In the database you have definitions for all Windows API (functions, constants and data types) in BASIC.
The problem with vb is that integer is 16 bits, long is 32 etc.
but can't the integer's be replaced with word's? thei'r 16 bit right?
Simple find and replace.

1.- INTEGER for SHORT
2.- LONG for INTEGER (no need on this)
A Great resource!
Thanks, Nathan!
All the headers I've made thus far, meaning the new ones as well as the additions to existing ones, have come from VB declarations. The method is so similar...you just have to make sure to remove the .dll from the Lib, and change the data types. The rest is the same. Oh, and you have to make sure you have the proper .a file from the mingw distro as well. Big Grin