Hey guys, How to make a bridge between the Wireless Lan and the rogue acces point?

To make a bridge between Lan and a rogue acces point would be done by the following commands:
# airbase-ng --essid Rogue -c 1 mon0
--> meaning the unauthorized acces point is called "Rogue" on channel 1 (wich will be "at0").
# brctl addbr (name bridge)
# brctl addif (name bridge) eth0
# brctl addif (name bridge) at0
# ifconfig eth0 0.0.0.0 up
# ifconfig at0 0.0.0.0 up
# echo 1 > /proc/sys/net/ipv4/ip_forward

How would this be done for a Wireless lan?
I've tried:
#brctl addif (name bridge) wlan0 but this is probably not the right thing to do cause I keep getting an error on this one. has it something to do with the "addif" command?