Merge branch 'release-2.140.136'
[feisty_meow.git] / nucleus / library / structures / object_packers.cpp
index 233ee8add41097e19f2e20f899a50d140bc895fa..37a7c5bccd8a51c11313e1b22e535e57d5fd4f6d 100644 (file)
@@ -110,6 +110,12 @@ void attach(byte_array &packed_form, int to_attach)
 bool detach(byte_array &packed_form, int &to_detach)
 { return detach(packed_form, (basis::un_int &)to_detach); }
 
+void attach(byte_array &packed_form, signed_long to_attach)
+{ attach(packed_form, basis::signed_long(to_attach)); }
+
+bool detach(byte_array &packed_form, signed_long &to_detach)
+{ return detach(packed_form, (basis::signed_long &)to_detach); }
+
 //void attach(byte_array &packed_form, basis::un_long to_attach)
 //{ attach(packed_form, basis::un_int(to_attach)); }