0 Mitglieder und 1 Gast betrachten dieses Thema.
Henk Robbers schreef op 6/7/15 om 1:47 PM:> AHCC does not support software floating point.To be more precise:AHCC does not provide calls to routines that performfloating point operations.Nor does it provide such routines.(Pure C does.)This can lead to internal inconsistencies.hence the 'OE' message.Please avoid any floating point usage in cases whereintegral would be possible in stead.
hm, bisher alles normalhab dann aber noch was abgeändert. DISKINFO *phdfree = malloc(sizeof(DISKINFO));und das dann nach main verschoben.Immer noch alles ok.
DISKINFO *phdfree;...Dfree(phdfree, i + 1);
DISKINFO phdfree;...Dfree(&phdfree, i + 1);
Ich hab mir mal das Beispiel aus dem Profibuch angeschaut. Egal ob Form oder Event CPX, ist es erlaubt mit normalen VDI-Befehlen in das eigene Fenster zu malen/schreiben? Oder geht das nur über einen Objektbaum/RSC?