Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
ATLS.LIB - FileNot Found when making FLL's.
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00633754
Message ID:
00633881
Vues:
25
Very frustrating.

Now; such a simple fll (prints out var type passed) is returning garbage.

I think I need to take a break...
the output is:
VAL[]
Var: [

so I must have screwed somethign up with mixing/matching libraries or header files or something...

#include "pro_ext.h"

void FAR test(ParamBlk FAR *parm ) {
char test[100];
_PutStr("VAL[");
_PutValue(&parm->p[0].val);
_PutStr("]\n");
sprintf(test,"Var: [%c]\n",parm->p[0].val.ev_type);
_PutStr(test);
}

FoxInfo myFoxInfo[] = {
{ "test", (FPFI) test, 1, "C"}
};

FoxTable _FoxTable = {
(FoxTable FAR *) 0,
sizeof( myFoxInfo) / sizeof( FoxInfo ),
myFoxInfo
};
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform