Commit cc549b27 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

dplayx: Remove unneeded test, fix compilation on msvc++.

parent 2a13eb06
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
*/ */
#include "wine/test.h" #include "wine/test.h"
#define INITGUID
#include <dplay.h> #include <dplay.h>
static BOOL validSP = FALSE; /*This global variable is needed until wine has a working service provider static BOOL validSP = FALSE; /*This global variable is needed until wine has a working service provider
...@@ -32,7 +33,6 @@ static BOOL CALLBACK EnumConnectionsCallback(LPCGUID lpguidSP, LPVOID lpConnecti ...@@ -32,7 +33,6 @@ static BOOL CALLBACK EnumConnectionsCallback(LPCGUID lpguidSP, LPVOID lpConnecti
{ {
/*I'm forcing TCP/IP Sevice provider*/ /*I'm forcing TCP/IP Sevice provider*/
hr = IDirectPlayX_InitializeConnection((LPDIRECTPLAY4) lpContext, lpConnection, 0); hr = IDirectPlayX_InitializeConnection((LPDIRECTPLAY4) lpContext, lpConnection, 0);
todo_wine ok( SUCCEEDED( hr ), "It's not possible to initialize TCP/IP service provider\n");
if( SUCCEEDED( hr )) if( SUCCEEDED( hr ))
validSP = TRUE; validSP = TRUE;
return FALSE; return FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment