ReactOS 0.4.15-dev-7788-g1ad9096
createclose.c File Reference
#include "green.h"
#include <debug.h>
Include dependency graph for createclose.c:

Go to the source code of this file.

Macros

#define NDEBUG
 

Functions

NTSTATUS GreenCreate (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp)
 
NTSTATUS GreenClose (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp)
 

Macro Definition Documentation

◆ NDEBUG

#define NDEBUG

Definition at line 11 of file createclose.c.

Function Documentation

◆ GreenClose()

NTSTATUS GreenClose ( IN PDEVICE_OBJECT  DeviceObject,
IN PIRP  Irp 
)

Definition at line 28 of file createclose.c.

31{
32 DPRINT("IRP_MJ_CLOSE\n");
33
34 Irp->IoStatus.Status = STATUS_SUCCESS;
35 Irp->IoStatus.Information = 0;
37 return STATUS_SUCCESS;
38}
_In_ PIRP Irp
Definition: csq.h:116
#define IoCompleteRequest
Definition: irp.c:1240
#define STATUS_SUCCESS
Definition: shellext.h:65
#define DPRINT
Definition: sndvol32.h:71
#define IO_NO_INCREMENT
Definition: iotypes.h:598

Referenced by GreenDispatch().

◆ GreenCreate()

NTSTATUS GreenCreate ( IN PDEVICE_OBJECT  DeviceObject,
IN PIRP  Irp 
)

Definition at line 15 of file createclose.c.

18{
19 DPRINT("IRP_MJ_CREATE\n");
20
21 Irp->IoStatus.Status = STATUS_SUCCESS;
22 Irp->IoStatus.Information = 0;
24 return STATUS_SUCCESS;
25}

Referenced by GreenDispatch().