added oledlg.dll to the build. Needed by visio2k setup.
[reactos.git] / reactos / ntoskrnl / ex / util.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/ex/misc.c
6 * PURPOSE: Executive Utility Functions
7 *
8 * PROGRAMMERS: No programmer listed.
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ntoskrnl.h>
14 #define NDEBUG
15 #include <internal/debug.h>
16
17 /* FUNCTIONS *****************************************************************/
18
19 /*
20 * @unimplemented
21 */
22 NTSTATUS
23 STDCALL
24 ExUuidCreate(
25 OUT UUID *Uuid
26 )
27 {
28 UNIMPLEMENTED;
29 return FALSE;
30 }
31
32 /*
33 * @implemented
34 */
35 BOOLEAN
36 STDCALL
37 ExVerifySuite(
38 SUITE_TYPE SuiteType
39 )
40 {
41 if (SuiteType == Personal) return TRUE;
42 return FALSE;
43 }
44
45 /* EOF */