query: Return a more appropriate error code from CIState.

This commit is contained in:
Mike McCormack 2006-07-12 14:56:17 +09:00 committed by Alexandre Julliard
parent 24e4acf728
commit d58e7e16b9
1 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@
#include "winreg.h"
#include "ole2.h"
#include "ntquery.h"
#include "cierror.h"
#include "initguid.h"
#include "wine/debug.h"
@ -73,5 +74,5 @@ HRESULT WINAPI DllRegisterServer(void)
HRESULT WINAPI CIState( WCHAR const *pwcsCat, WCHAR const *pwcsMachine, CI_STATE *pCiState)
{
FIXME("%s %s %p\n", debugstr_w(pwcsCat), debugstr_w(pwcsMachine), pCiState);
return E_FAIL;
return CI_E_NOT_RUNNING;
}