Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/05/2008, 17:38
Avatar de Fayca
Fayca
 
Fecha de Ingreso: abril-2008
Mensajes: 164
Antigüedad: 16 años, 9 meses
Puntos: 2
ayuda con un error

hola estoy haciendo un programa para simular el mouse mediante linea de comandos pero el problema es que no me deja compilar por que dice que no ahi valor en asignacion en unas variables como le puedo hacer para compilar esto:
Código:
#include <windows.h>
main(int argc, char *argv[])
{
    if (argc = 3)
    {
    int nWidth  = GetSystemMetrics(SM_CXSCREEN) - 1, nHeight = GetSystemMetrics(SM_CYSCREEN) - 1;
    SetCursorPos((atoi(argv[1]) % nWidth) + 1, (atoi(argv[2]) % nHeight) + 1);
    return 0;
    }
    if (argc = 2)
    {
        if(atoi(argv[1]) = 0)
        {
            mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0);
            mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0);
            return 0;
        }
        if(atoi(argv[1]) = 1)
        {
            mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0);
            mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0);
            return 0;
        }
    }
}
les agredeceria su ayuda