SWAT is a graphical tool that uses a web interface in your web browser to configure Samba. But you don't need it.
Easiest way to setup a samba share that Windows will be able to see goes something like this:
1. If you haven't already done so, install Samba.
2. Open up a terminal and become root.
3. Edit /etc/samba/smb.conf
4. At the bottom of that file, insert something that looks like this:
Code:
[sharename]
path = /
writable = yes
5. Then create access permissions by running
smbpasswd username which will prompt for a password for whatever user that is.
6. Run
/etc/init.d/samba restart or just reboot Linux. Then your share will be active.