in reply to Re^6: How get PV address?
in thread How get PV address?
The standard typemap for outputting integer values will do either sv_setiv($arg, (IV)$var) or sv_setuv($arg, (UV)$var) depending on whether the integer type is signed or not. The IV or UV types are usually defined as being the largest integer type that the compiler supports: they're large enough to hold a pointer, and often larger than a plain int (8 bytes versus 4 bytes).
Dave.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: How get PV address?
by xiaoyafeng (Deacon) on Aug 06, 2019 at 12:55 UTC |