function MCVE_GetCell(&$conn, $id, $col, $row) { return M_GetCell($conn, $id, $col, $row); }
function M_GetBinaryCell(&$conn, $id, $col, $row, &$outlen) { $outlen = 0; $out = null; $cell = M_GetCell($conn, $id, $col, $row); if ($cell) { $out = base64_decode($cell); } if ($out) { $outlen = strlen($out); } return $out; }