C file functions in QB64 ??? - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://qb64phoenix.com/forum/forumdisplay.php?fid=10) +---- Thread: C file functions in QB64 ??? (/showthread.php?tid=1644) Pages:
1
2
|
RE: C file functions in QB64 ??? - DSMan195276 - 04-29-2023 (04-28-2023, 07:50 PM)Kernelpanic Wrote:Quote:I think I know why you are having a problem, you must be using the 32-bit version of QB64The second version works, also with the 64 bit version. It's the `size` and `count` parameters to `fread()`, they're a different size. In C they're a `size_t` type, which is a 32-bit integer on 32-bit system and a 64-bit integer on 64-bit system. If you want to avoid separate definitions then you could use `_Unsigned _Offset` for the `size_t` parameters, that's more or less the same thing. RE: C file functions in QB64 ??? - Kernelpanic - 04-29-2023 @DSMan195276 - Thanks for the explanations. Enlightenment is slowly coming. |