You will need to configure routes on the PC to point at the various networks.
First, clear out your existing routes:
route -f
Then define the gateway via the wireless card (assume 192.168.0.1 is gateway)
route add 0.0.0.0 mask 0.0.0.0 192.168.0.1 metric 5
Then define routes to any internal networks via your LAN (assume local LAN is 192.168.1.0 network, with a gateway of 192.168.1.1)
route add x.0.0.0 mask 255.0.0.0 192.168.1.1 metric 5
route add x.x.x.0 mask 255.255.255.0 192.168.1.1 metric 5
ect
This will allow you to route both ways.