1 /*
2  * We need one class per OS as Microsofts API
3  * differs only by calling convention and some
4  * function we don't use.
5  *
6  * vss_generic will handle all versions and
7  * switch between different headers to include.
8 */
9 
10 #ifdef WIN32_VSS
11 	#define B_VSS_W2K3
12 	#include "vss_generic.cpp"
13 #endif
14