James Hawkins wrote:
+VOID WINAPI SystemFunction036(PCHAR Buffer, INT BufferSize) +{
- FIXME("(%s, %i): stub\n", Buffer, BufferSize);
+}
If you really want to stub this function then please don't print the buffer contents. It's an output buffer and contains garbage (maybe the garbage means something, but still it's garbage).
- Filip
If you really want to stub this function then please don't print the buffer contents
Should it be
FIXME("(%p, %i): stub\n", Buffer, BufferSize);
instead? Or should it just not be there at all?
On Tue, 28 Sep 2004 02:10:06 +0200, Filip Navara xnavara@volny.cz wrote:
James Hawkins wrote:
+VOID WINAPI SystemFunction036(PCHAR Buffer, INT BufferSize) +{
FIXME("(%s, %i): stub\n", Buffer, BufferSize);
+}
If you really want to stub this function then please don't print the buffer contents. It's an output buffer and contains garbage (maybe the garbage means something, but still it's garbage).
- Filip