Ejemplo n.º 1
0
// Cut of the first part of the string and convert it to a long value
unsigned long ByteString::firstLong()
{
	unsigned long rv = long_val();

	split(8);

	return rv;
}
Ejemplo n.º 2
0
long FunctionArguments::getLong( const char *name )
{
    Py::Long long_val( getArg( name ) );
    return long_val;
}