cac12bfa9444520d05bd1f0dee4fbb08ab5f9548
[reactos.git] / ntoskrnl / ex / callback.c
1 /*
2  *  ReactOS kernel
3  *  Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$
20  *
21  * PROJECT:         ReactOS kernel
22  * FILE:            ntoskrnl/ex/callback.c
23  * PURPOSE:         Executive callbacks
24  * PROGRAMMER:      David Welch (welch@mcmail.com)
25  * PORTABILITY:     Checked.
26  * UPDATE HISTORY:
27  *                  Created 22/05/98
28  */
29
30 /*
31  * NOTE:
32  *      These funtions are not implemented in NT4.
33  *      They are implemented in Win2k.
34  */
35
36 /* INCLUDES *****************************************************************/
37
38 #include <ddk/ntddk.h>
39
40 #include <internal/debug.h>
41
42 /* FUNCTIONS *****************************************************************/
43
44 /*
45  * @unimplemented
46  */
47 NTSTATUS
48 STDCALL
49 ExCreateCallback (
50         OUT     PCALLBACK_OBJECT        * CallbackObject,
51         IN      POBJECT_ATTRIBUTES      ObjectAttributes,
52         IN      BOOLEAN                 Create,
53         IN      BOOLEAN                 AllowMultipleCallbacks
54         )
55 {
56         return STATUS_NOT_IMPLEMENTED;
57 }
58
59 /*
60  * @unimplemented
61  */
62 VOID
63 STDCALL
64 ExNotifyCallback (
65         IN      PCALLBACK_OBJECT        CallbackObject,
66         IN      PVOID   Argument1,
67         IN      PVOID   Argument2
68         )
69 {
70         return;
71 }
72
73 /*
74  * @unimplemented
75  */
76 PVOID
77 STDCALL
78 ExRegisterCallback (
79         IN      PCALLBACK_OBJECT        CallbackObject,
80         IN      PCALLBACK_FUNCTION      CallbackFunction,
81         IN      PVOID                   CallbackContext
82         )
83 {
84         return NULL;
85 }
86
87 /*
88  * @unimplemented
89  */
90 VOID
91 STDCALL
92 ExUnregisterCallback (
93         IN      PVOID   CallbackRegistration
94         )
95 {
96         return;
97 }
98
99 /* EOF */