I have the following code so far. I need to return the second element of the structure "ScanFindInfo". The second element is a string.
- Code: Select all Expand view
#pragma BEGINDUMP
#include <hbapi.h>
#include <windows.h>
#include <scancapi.h>
HB_FUNC( FindScanner )
{
SCAN_FINDINFO ScanFindInfo;
HANDLE hFindHandle;
DWORD dwResult;
SI_INIT( &ScanFindInfo );
dwResult = SCAN_FindFirst( &ScanFindInfo, &hFindHandle );
}
#pragma ENDDUMP
Thanks in advance!