Tengo que acceder a archivos tipo vbisam (vbisam de TinyCobol u OpenCobol) a traves de una dll vbisam.dll
dicho archivo esta indexado y sabiendo que la funcion se definio asi
Code: Select all
extern int isopen (const char *pcfilename, int imode);
extern int isread (int ihandle, char *pcrow, int imode);
extern int iswrite (int ihandle, char *pcrow);
extern int isbegin (void);
extern int isclose (int ihandle);
extern int isdelete (int ihandle, char *pcrow);
Code: Select all
DECLARE DLL_TYPE_INT isopen(DLL_TYPE_LPCSTR cFileName, DLL_TYPE_INT nNome ) asi esta bien para isopen()?