On Fri, 2006-05-19 at 13:13 +0300, Paul Chitescu wrote:
+BOOL WINAPI FileEncryptionStatusW(LPCWSTR lpFileName, LPDWORD lpStatus) +{
- FIXME("%s %p\n", debugstr_w(lpFileName), lpStatus);
We typically to put "stub" in the FIXME message when we dummy up such functions: + FIXME("(%s %p): stub\n", debugstr_w(lpFileName), lpStatus);
I really want to put an end of this.
That message was copied from some other nearby function.
What is the preferred format? Looking just in the same file i find the following alternatives, all used: 1. "%s %p\n" 2. "%s %p - stub\n" 3. "(%s %p)\n" 4. "stub (%s %p)\n" 5. "(%s %p) : stub\n" 6. "(%s %p):stub\n" 7. "(%s %p): stub\n"
So, which should be used? 7 as you suggested?
Regards,
Paul Chitescu
On Fri, 19 May 2006, Dimi Paun wrote:
On Fri, 2006-05-19 at 13:13 +0300, Paul Chitescu wrote:
+BOOL WINAPI FileEncryptionStatusW(LPCWSTR lpFileName, LPDWORD lpStatus) +{
- FIXME("%s %p\n", debugstr_w(lpFileName), lpStatus);
We typically to put "stub" in the FIXME message when we dummy up such functions:
- FIXME("(%s %p): stub\n", debugstr_w(lpFileName), lpStatus);
On Fri, 2006-05-19 at 14:59 +0300, Paul Chitescu wrote:
I really want to put an end of this.
Sorry, I should have commented on this earlier.
What is the preferred format? Looking just in the same file i find the following alternatives, all used:
- "%s %p\n"
- "%s %p - stub\n"
- "(%s %p)\n"
- "stub (%s %p)\n"
- "(%s %p) : stub\n"
- "(%s %p):stub\n"
- "(%s %p): stub\n"
So, which should be used? 7 as you suggested?
7, yes.