En la bios si no mal recuerdo puedes desasignar la Ram a la GPU que viene en la tarjeta madre... o lo mejor de todo es desactivar la misma...
Dulces Lunas!¡.
Dulces Lunas!¡.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: Elemental Code en 2 Mayo 2012, 04:39 AM
vease sniffer?
Citar
Multiplies two 32-bit values and then divides the 64-bit result by a third 32-bit value. The final result is rounded to the nearest integer.
int MulDiv(
__in int nNumber,
__in int nNumerator,
__in int nDenominator
);
Parameters
nNumber [in]
The multiplicand.
nNumerator [in]
The multiplier.
nDenominator [in]
The number by which the result of the multiplication operation is to be divided.
Return value
If the function succeeds, the return value is the result of the multiplication and division, rounded to the nearest integer. If the result is a positive half integer (ends in .5), it is rounded up. If the result is a negative half integer, it is rounded down.
If either an overflow occurred or nDenominator was 0, the return value is -1.
int uiSize = sizeof(unsigned);
// Obtenemos los buffers del Sistema Operativo, tanto de Envio como de Recepción de datos.
if (::getsockopt(this->mySock, SOL_SOCKET, SO_RCVBUF, (char*)&this->uiBuffRcv, &uiSize) == SOCKET_ERROR ||
::getsockopt(this->mySock, SOL_SOCKET, SO_SNDBUF, (char*)&this->uiBuffSnd, &uiSize) == SOCKET_ERROR)
{
closesocket(this->mySock);
//Error...
}
Cita de: Rigoberta II en 23 Abril 2012, 19:55 PM
Podrías mostrarme en algún "code" como funciona.