source: trunk/src/NTDLL/unknown.cpp@ 234

Last change on this file since 234 was 234, checked in by phaller, 26 years ago

Fix: added missing unknown.cpp

File size: 1.6 KB
Line 
1/* $Id: unknown.cpp,v 1.1 1999-06-28 08:08:19 phaller Exp $ */
2
3/*
4 * Project Odin Software License can be found in LICENSE.TXT
5 * Win32 NT Runtime / NTDLL for OS/2
6 * Copyright 1998, 1999 Patrick Haller (phaller@gmx.net)
7 * NT basis DLL
8 */
9
10
11/*****************************************************************************
12 * Includes *
13 *****************************************************************************/
14
15#include <os2win.h>
16#include <winnt.h>
17#include <ntdef.h>
18#include <builtin.h>
19#include <stdlib.h>
20#include <string.h>
21#include <ctype.h>
22#include "misc.h"
23#include "unicode.h"
24#include "ntdll.h"
25
26
27/*****************************************************************************
28 * Types & Defines *
29 *****************************************************************************/
30
31
32/*****************************************************************************
33 * Name : NTSTATUS NtAllocateUuids
34 * Purpose : unknown
35 * Parameters: unknown, probably wrong
36 * Variables :
37 * Result :
38 * Remark : NTDLL.59
39 * Status : UNTESTED STUB
40 *
41 * Author : Patrick Haller [Tue, 1999/06/01 09:00]
42 *****************************************************************************/
43
44NTSTATUS WIN32API NtAllocateUuids(DWORD x1,
45 DWORD x2,
46 DWORD x3,
47 DWORD x4)
48{
49 dprintf(("NTDLL: NtAllocateUuids(%08xh,%08xh,%08xh,%08xh) not implemented.\n",
50 x1,
51 x2,
52 x3,
53 x4));
54
55 return 0;
56}
57
58
Note: See TracBrowser for help on using the repository browser.