mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
*** empty log message ***
svn path=/trunk/; revision=1958
This commit is contained in:
parent
4c892bc4e7
commit
d1c18ff4e4
1 changed files with 42 additions and 0 deletions
42
reactos/lib/ntdll/csr/capture.c
Normal file
42
reactos/lib/ntdll/csr/capture.c
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* $Id: capture.c,v 1.1 2001/06/11 20:36:44 ea Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* FILE: lib/ntdll/csr/capture.c
|
||||
* PURPOSE: CSRSS Capure API
|
||||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include <ddk/ntddk.h>
|
||||
#include <ntdll/csr.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <csrss/csrss.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <ntdll/ntdll.h>
|
||||
|
||||
/* GLOBALS *******************************************************************/
|
||||
|
||||
static HANDLE hCaptureHeap = INVALID_HANDLE_VALUE;
|
||||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
PVOID
|
||||
STDCALL CsrAllocateCaptureBuffer (
|
||||
DWORD Unknown0,
|
||||
DWORD Unknown1,
|
||||
DWORD Unknown2
|
||||
)
|
||||
{
|
||||
/* FIXME: implement it! */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
BOOLEAN STDCALL CsrFreeCaptureBuffer (PVOID CaptureBuffer)
|
||||
{
|
||||
return RtlFreeHeap (hCaptureHeap, 0, CaptureBuffer);
|
||||
}
|
||||
|
||||
/* EOF */
|
Loading…
Reference in a new issue