From 164369736521bc6c2c9e5ea762a0c77b48465757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Mon, 14 Jun 2010 21:26:39 +0200 Subject: [PATCH] propsys: Mention that the functions are stubs. --- dlls/propsys/propsys_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/propsys/propsys_main.c b/dlls/propsys/propsys_main.c index d2b1744d5e8..cdda06df1f7 100644 --- a/dlls/propsys/propsys_main.c +++ b/dlls/propsys/propsys_main.c @@ -50,14 +50,14 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) HRESULT WINAPI PSRegisterPropertySchema(PCWSTR path) { - FIXME("%s\n", debugstr_w(path)); + FIXME("%s stub\n", debugstr_w(path)); return S_OK; } HRESULT WINAPI PSUnregisterPropertySchema(PCWSTR path) { - FIXME("%s\n", debugstr_w(path)); + FIXME("%s stub\n", debugstr_w(path)); return E_NOTIMPL; }