It depends on what level you mean "flash" the PIC controller.
If you have a boot loader in the PIC device that has a protocol for accepting firmware updates, you need to implement the PC side of that protocol, using whatever link is available. For example, if the boot loader looks for firmware using an RS-232 protocol, you need to implement the server side of that. This will depend on what software you're dealing with in the PIC and how the PIC connects to the PC. If you can modify the boot loader, then you can implement an appropriate protocol on both ends to do software updates.
In the boot loader case you will not need a device driver on the PC side, unless you are dealing with some esoteric interface. I expect that the PC side of a boot loader update would be entirely in user mode.
If you want to flash a device without being concerned about the software in the PIC, you need to implement the protocols in the flash programming specification. To do this you will need have an appropriate device on the PC side and software to control that device.