sfc: Add a stub implementation for ordinal 3.

This commit is contained in:
Hans Leidekker 2009-01-06 08:34:08 +01:00 committed by Alexandre Julliard
parent c8513986f2
commit d5d2a27aa4
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,6 @@
1 stub @
2 stub @
3 stub @
3 stdcall @(long) SFC_3
4 stub @
5 stub @
6 stub @

View file

@ -52,3 +52,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
}
return TRUE;
}
DWORD WINAPI SFC_3(DWORD unknown)
{
FIXME("%x\n", unknown);
return 0;
}