how to use hbdll.ch ?
Posted: Tue Dec 11, 2012 1:29 pm
Hi Everyone:
looking into the Harbour changelog.txt HBDLL.CH as I find I need to work with. DLL I prepare to search through and find an example TextCrawler.
anyone know or have other examples to apply hbdll?
looking into the Harbour changelog.txt HBDLL.CH as I find I need to work with. DLL I prepare to search through and find an example TextCrawler.
Code: Select all
*
* $Id: dll.prg 18414 2012-10-31 13:04:01Z vszakats $
*/
#require "xhb"
#include "hbdll.ch"
IMPORT STATIC MessageBox( hWnd, cMsg, cText, nFlags ) FROM user32.dll EXPORTED AS MessageBoxA
PROCEDURE Main()
? MessageBox( 0, "Hello world!", "Harbour sez" )
RETURN