moved skeleton to end of win32 initializers list so it isn't considered default

This commit is contained in:
rossb 2011-03-04 04:18:44 +00:00
commit 26b196a9f0

View file

@ -64,10 +64,6 @@ PaError PaWasapi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiInd
PaUtilHostApiInitializer *paHostApiInitializers[] =
{
#if PA_USE_SKELETON
PaSkeleton_Initialize, /* just for testing */
#endif
#if PA_USE_WMME
PaWinMme_Initialize,
#endif
@ -88,6 +84,10 @@ PaUtilHostApiInitializer *paHostApiInitializers[] =
PaWinWdm_Initialize,
#endif
#if PA_USE_SKELETON
PaSkeleton_Initialize, /* just for testing. last in list so it isn't marked as default. */
#endif
0 /* NULL terminated array */
};