Files
harbour-core/harbour/contrib/xhb/tests/dll.prg
Viktor Szakats 5b39850f11 2011-05-18 09:49 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
+ contrib/xhb/tests/dll.prg
    + dll call sample
  * contrib/xhb/hbdll.ch
    ! several fixes to make it work in Harbour and MT apps
2011-05-18 07:50:42 +00:00

12 lines
211 B
Plaintext

/*
* $Id$
*/
#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