mirror of
https://github.com/reactos/reactos.git
synced 2025-05-09 03:37:08 +00:00
22 lines
324 B
C
22 lines
324 B
C
/* $Id$ */
|
|
#include "precomp.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
BOOL
|
|
STDCALL
|
|
QueryWorkingSet(HANDLE hProcess,
|
|
PVOID pv,
|
|
DWORD cb)
|
|
{
|
|
DPRINT1("PSAPI: QueryWorkingSet is UNIMPLEMENTED!\n");
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
return FALSE;
|
|
}
|
|
|
|
/* EOF */
|