Results 167 comments of namazso

@Darthagnon hey, just found your comment while lurking this repo. I'm the developer of OpenHashTab > a "double-click to check hashes from sumfile in a nice GUI" function This has...

you set `PAWN_CELL_SIZE` to `64`, right? it seems to work just fine here, i tried the greatest common divisor example.

Oh wait, maybe I misunderstood something. In the title the "64 bit" refers to pawn cell size, or the target architecture?

Hm, indeed 64 bit builds are somewhat broken. For me it stuck in an infinite loop rater than access violation, but that's obviously not correct behavior either. I'm not sure...

> What version of the pawn compiler do I need to use to run a script using your version of the interpreter? The latest. You're most likely receiving that because...

Maybe this happens on a file bigger than 2 GB? windows has `_lseeki64` for big files

Reading through POSIX and various documentations there doesn't seem to be any guarantee of relations between a fd and a FILE. Additionally, the C standard allows FILE to store position...

You could simply use dyncall instead: https://github.com/compuphase/pawn/blob/master/amx/amxprocess.c#L46-L53

The reasoning for removal is understandable, but it would be really great if we could instead get a better alternative, like fully assembly functions that aren't optimized / tried to...

the whole posix thing is a big mess on windows tbh (especially with unicode considerations), the proper solution would probably be just making a separate implementation of every primitive for...