Menú

Mostrar Mensajes

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ú

Mensajes - cbug

#141
Tengo unas dudas:

1- ¿Por qué pasas como parámetro datos, directamente no sería mejor declararlo localmente si para lo único que lo utilizas es para leer datos del archivo?
2-¿Por qué ordenas si todo es en ámbito local y al salir se pierde la ordenación?

#142
CitarY siempre devuelve STATE A porque está bien, el objetivo es que me devuelva B si hay algún error inicializando variables
CitarMmmmm tendrias que explicarte un poco mejor, porque yo la verdad no entiendo cual seria la funcionalidad

¿Que devuelva error al inicializar una variable? ¿Cómo sucederá esto si se supone que estás inicializando bien dicho campo de la estructura, en cualquier otro caso el compilador es el que informará el error cierto?

No entiendo la finalidad  :xD
#143
Es cierto, esa función siempre devolverá 0. ¿No sería conveniente que se pase la estructura a analizar a sasfid?
#144
Con VS también puedes hacer interfaces gráficas fácilmente.
#145
Programación C/C++ / Re: Virus sys32.exe
19 Junio 2010, 15:23 PM
¿Por qué declara 2 funciones tipo int, y no devuelve ningún valor dentro de ellas?
#146
vim + gcc (?)
#147
Que librerías tienes disponibles o puedes usar?
#148
GNU/Linux / Edición de tty's
17 Junio 2010, 21:08 PM
Hace poco me surgió una duda... Al usar las tty's de ubuntu 10.04, aparece el título "Ubuntu 10.04 LTS LOCALHOST tty*", en que fichero se almacena esto? Quisiera editar ese título.
#149
GNU/Linux / OpenBox - Configuración
17 Junio 2010, 00:46 AM
Tal vez ustedes puedan ayudarme, este es mi autostart.sh

Código (bash) [Seleccionar]
# This shell script is run before Openbox launches.
# Environment variables set here are passed to the Openbox session.

# Set a background color
BG=""
if which hsetroot >/dev/null; then
   BG=hsetroot
else
   if which esetroot >/dev/null; then
BG=esetroot
   else
if which xsetroot >/dev/null; then
   BG=xsetroot
fi
   fi
fi
test -z $BG || $BG -solid "#303030"

######AQUI EL PROBLEMA#####
#Establecer wallpaper
feh --bg-scale /home/cbug/Imágenes/vladstudio_blackcat_1152x86.jpg
#Ininicar Conky
conky
#Iniciar Xfce-panel
xfce4-panel
########################


# D-bus
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
      eval `dbus-launch --sh-syntax --exit-with-session`
fi

# Make GTK apps look and behave how they were set up in the gnome config tools
if test -x /usr/libexec/gnome-settings-daemon >/dev/null; then
 /usr/libexec/gnome-settings-daemon &
elif which gnome-settings-daemon >/dev/null; then
 gnome-settings-daemon &
# Make GTK apps look and behave how they were set up in the XFCE config tools
elif which xfce-mcs-manager >/dev/null; then
 xfce-mcs-manager n &
fi

# Preload stuff for KDE apps
if which start_kdeinit >/dev/null; then
 LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup &
fi

# Run XDG autostart things.  By default don't run anything desktop-specific
# See xdg-autostart --help more info
DESKTOP_ENV=""
if which /usr/lib/openbox/xdg-autostart >/dev/null; then
 /usr/lib/openbox/xdg-autostart $DESKTOP_ENV
fi


Cuando inicio openbox session, no funciona mi teclado :S

EDITADO: Solucionado.
#150
Que yo sepa:

int a[4];

No es un array de 4 dimensiones. :-\