moved skeleton to end of win32 initializers list so it isn't considered default
This commit is contained in:
parent
2fb11cbabd
commit
26b196a9f0
1 changed files with 4 additions and 4 deletions
|
|
@ -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 */
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue