mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-16 21:51:29 +00:00
- Adds a perl::ref alias for perl::reference - Optimizes array return pushes by accessing SV* values directly instead of using operator[] scalar_proxy - Allows functions with a perl::hash parameter to accept hashes with any scalar key type instead of requiring explicit string keys e.g., foo(123 => 1) will now work on functions accepting a perl::hash
11 lines
275 B
C++
11 lines
275 B
C++
#pragma once
|
|
|
|
constexpr int perlbind_version_major = 1;
|
|
constexpr int perlbind_version_minor = 1;
|
|
constexpr int perlbind_version_patch = 0;
|
|
|
|
constexpr int perlbind_version()
|
|
{
|
|
return perlbind_version_major * 10000 + perlbind_version_minor * 100 + perlbind_version_patch;
|
|
}
|