Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 1 | /* |
| 2 | * NT basis DLL |
| 3 | * |
| 4 | * This file contains the Nt* API functions of NTDLL.DLL. |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 5 | * In the original ntdll.dll they all seem to just call int 0x2e (down to the HAL) |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 6 | * |
| 7 | * Copyright 1996-1998 Marcus Meissner |
| 8 | */ |
| 9 | |
Patrik Stridvall | fdcfdb9 | 1999-06-12 14:55:11 +0000 | [diff] [blame] | 10 | #include <stdio.h> |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 11 | #include <stdlib.h> |
| 12 | #include <string.h> |
| 13 | #include <time.h> |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 14 | #include "debugtools.h" |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 15 | |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 16 | #include "ntddk.h" |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 17 | #include "ntdll_misc.h" |
Alexandre Julliard | 0aa6cc2 | 2000-07-29 21:56:59 +0000 | [diff] [blame] | 18 | #include "server.h" |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 19 | |
Alexandre Julliard | 0dd3655 | 2000-01-29 19:49:58 +0000 | [diff] [blame] | 20 | DEFAULT_DEBUG_CHANNEL(ntdll); |
Patrik Stridvall | b4b9fae | 1999-04-19 14:56:29 +0000 | [diff] [blame] | 21 | |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 22 | /* |
| 23 | * Timer object |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 24 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 25 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 26 | /************************************************************************** |
| 27 | * NtCreateTimer [NTDLL.87] |
| 28 | */ |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 29 | NTSTATUS WINAPI NtCreateTimer( |
| 30 | OUT PHANDLE TimerHandle, |
| 31 | IN ACCESS_MASK DesiredAccess, |
| 32 | IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL, |
| 33 | IN TIMER_TYPE TimerType) |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 34 | { |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 35 | FIXME("(%p,0x%08lx,%p,0x%08x) stub\n", |
| 36 | TimerHandle,DesiredAccess,ObjectAttributes, TimerType); |
| 37 | dump_ObjectAttributes(ObjectAttributes); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 38 | return 0; |
| 39 | } |
| 40 | /************************************************************************** |
| 41 | * NtSetTimer [NTDLL.221] |
| 42 | */ |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 43 | NTSTATUS WINAPI NtSetTimer( |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 44 | IN HANDLE TimerHandle, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 45 | IN PLARGE_INTEGER DueTime, |
| 46 | IN PTIMERAPCROUTINE TimerApcRoutine, |
| 47 | IN PVOID TimerContext, |
Juergen Schmied | 3426d85 | 1999-02-19 16:29:05 +0000 | [diff] [blame] | 48 | IN BOOLEAN WakeTimer, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 49 | IN ULONG Period OPTIONAL, |
| 50 | OUT PBOOLEAN PreviousState OPTIONAL) |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 51 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 52 | FIXME("(0x%08x,%p,%p,%p,%08x,0x%08lx,%p) stub\n", |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 53 | TimerHandle,DueTime,TimerApcRoutine,TimerContext,WakeTimer,Period,PreviousState); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 54 | return 0; |
| 55 | } |
| 56 | |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 57 | /****************************************************************************** |
| 58 | * NtQueryTimerResolution [NTDLL.129] |
| 59 | */ |
| 60 | NTSTATUS WINAPI NtQueryTimerResolution(DWORD x1,DWORD x2,DWORD x3) |
| 61 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 62 | FIXME("(0x%08lx,0x%08lx,0x%08lx), stub!\n",x1,x2,x3); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 63 | return 1; |
| 64 | } |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 65 | |
| 66 | /* |
| 67 | * Process object |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 68 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 69 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 70 | /****************************************************************************** |
Juergen Schmied | d1f10c5 | 1999-04-11 14:53:24 +0000 | [diff] [blame] | 71 | * NtTerminateProcess [NTDLL.] |
| 72 | * |
| 73 | * Native applications must kill themselves when done |
Juergen Schmied | d1f10c5 | 1999-04-11 14:53:24 +0000 | [diff] [blame] | 74 | */ |
Alexandre Julliard | 0aa6cc2 | 2000-07-29 21:56:59 +0000 | [diff] [blame] | 75 | NTSTATUS WINAPI NtTerminateProcess( HANDLE handle, LONG exit_code ) |
Juergen Schmied | d1f10c5 | 1999-04-11 14:53:24 +0000 | [diff] [blame] | 76 | { |
Alexandre Julliard | 0aa6cc2 | 2000-07-29 21:56:59 +0000 | [diff] [blame] | 77 | NTSTATUS ret; |
| 78 | struct terminate_process_request *req = get_req_buffer(); |
| 79 | req->handle = handle; |
| 80 | req->exit_code = exit_code; |
| 81 | if (!(ret = server_call_noerr( REQ_TERMINATE_PROCESS )) && req->self) exit( exit_code ); |
| 82 | return ret; |
Juergen Schmied | d1f10c5 | 1999-04-11 14:53:24 +0000 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | /****************************************************************************** |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 86 | * NtQueryInformationProcess [NTDLL.] |
| 87 | * |
| 88 | */ |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 89 | NTSTATUS WINAPI NtQueryInformationProcess( |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 90 | IN HANDLE ProcessHandle, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 91 | IN PROCESSINFOCLASS ProcessInformationClass, |
| 92 | OUT PVOID ProcessInformation, |
| 93 | IN ULONG ProcessInformationLength, |
| 94 | OUT PULONG ReturnLength) |
| 95 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 96 | FIXME("(0x%08x,0x%08x,%p,0x%08lx,%p),stub!\n", |
Marcus Meissner | 12298c5 | 2000-06-25 12:51:55 +0000 | [diff] [blame] | 97 | ProcessHandle,ProcessInformationClass,ProcessInformation,ProcessInformationLength,ReturnLength |
| 98 | ); |
| 99 | /* "These are not the debuggers you are looking for." */ |
| 100 | if (ProcessInformationClass == ProcessDebugPort) |
| 101 | /* set it to 0 aka "no debugger" to satisfy copy protections */ |
| 102 | memset(ProcessInformation,0,ProcessInformationLength); |
| 103 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 104 | return 0; |
| 105 | } |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 106 | |
| 107 | /****************************************************************************** |
| 108 | * NtSetInformationProcess [NTDLL.207] |
| 109 | */ |
| 110 | NTSTATUS WINAPI NtSetInformationProcess( |
| 111 | IN HANDLE ProcessHandle, |
| 112 | IN PROCESSINFOCLASS ProcessInformationClass, |
| 113 | IN PVOID ProcessInformation, |
| 114 | IN ULONG ProcessInformationLength) |
| 115 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 116 | FIXME("(0x%08x,0x%08x,%p,0x%08lx) stub\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 117 | ProcessHandle,ProcessInformationClass,ProcessInformation,ProcessInformationLength); |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | /* |
| 122 | * Thread |
| 123 | */ |
| 124 | |
| 125 | /****************************************************************************** |
| 126 | * NtResumeThread [NTDLL] |
| 127 | */ |
| 128 | NTSTATUS WINAPI NtResumeThread( |
| 129 | IN HANDLE ThreadHandle, |
| 130 | IN PULONG SuspendCount) |
| 131 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 132 | FIXME("(0x%08x,%p),stub!\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 133 | ThreadHandle,SuspendCount); |
| 134 | return 0; |
| 135 | } |
| 136 | |
| 137 | /****************************************************************************** |
| 138 | * NtTerminateThread [NTDLL] |
| 139 | */ |
Alexandre Julliard | 0aa6cc2 | 2000-07-29 21:56:59 +0000 | [diff] [blame] | 140 | NTSTATUS WINAPI NtTerminateThread( IN HANDLE handle, |
| 141 | IN NTSTATUS exit_code ) |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 142 | { |
Alexandre Julliard | 0aa6cc2 | 2000-07-29 21:56:59 +0000 | [diff] [blame] | 143 | NTSTATUS ret; |
| 144 | struct terminate_thread_request *req = get_req_buffer(); |
| 145 | req->handle = handle; |
| 146 | req->exit_code = exit_code; |
| 147 | if (!(ret = server_call_noerr( REQ_TERMINATE_THREAD )) && req->self) |
| 148 | { |
| 149 | if (req->last) exit( exit_code ); |
| 150 | else SYSDEPS_ExitThread( exit_code ); |
| 151 | } |
| 152 | return ret; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 155 | /****************************************************************************** |
| 156 | * NtQueryInformationThread [NTDLL.] |
| 157 | * |
| 158 | */ |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 159 | NTSTATUS WINAPI NtQueryInformationThread( |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 160 | IN HANDLE ThreadHandle, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 161 | IN THREADINFOCLASS ThreadInformationClass, |
| 162 | OUT PVOID ThreadInformation, |
| 163 | IN ULONG ThreadInformationLength, |
| 164 | OUT PULONG ReturnLength) |
| 165 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 166 | FIXME("(0x%08x,0x%08x,%p,0x%08lx,%p),stub!\n", |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 167 | ThreadHandle, ThreadInformationClass, ThreadInformation, |
| 168 | ThreadInformationLength, ReturnLength); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 169 | return 0; |
| 170 | } |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 171 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 172 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 173 | * NtSetInformationThread [NTDLL] |
| 174 | */ |
| 175 | NTSTATUS WINAPI NtSetInformationThread( |
| 176 | HANDLE ThreadHandle, |
| 177 | THREADINFOCLASS ThreadInformationClass, |
| 178 | PVOID ThreadInformation, |
| 179 | ULONG ThreadInformationLength) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 180 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 181 | FIXME("(0x%08x,0x%08x,%p,0x%08lx),stub!\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 182 | ThreadHandle, ThreadInformationClass, ThreadInformation, ThreadInformationLength); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 183 | return 0; |
| 184 | } |
| 185 | |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 186 | /* |
| 187 | * Token |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 188 | */ |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 189 | |
| 190 | /****************************************************************************** |
| 191 | * NtDuplicateToken [NTDLL] |
| 192 | */ |
| 193 | NTSTATUS WINAPI NtDuplicateToken( |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 194 | IN HANDLE ExistingToken, |
| 195 | IN ACCESS_MASK DesiredAccess, |
| 196 | IN POBJECT_ATTRIBUTES ObjectAttributes, |
| 197 | IN SECURITY_IMPERSONATION_LEVEL ImpersonationLevel, |
| 198 | IN TOKEN_TYPE TokenType, |
| 199 | OUT PHANDLE NewToken) |
| 200 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 201 | FIXME("(0x%08x,0x%08lx,%p,0x%08x,0x%08x,%p),stub!\n", |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 202 | ExistingToken, DesiredAccess, ObjectAttributes, |
| 203 | ImpersonationLevel, TokenType, NewToken); |
| 204 | dump_ObjectAttributes(ObjectAttributes); |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 205 | return 0; |
| 206 | } |
| 207 | |
| 208 | /****************************************************************************** |
| 209 | * NtOpenProcessToken [NTDLL] |
| 210 | */ |
| 211 | NTSTATUS WINAPI NtOpenProcessToken( |
| 212 | HANDLE ProcessHandle, |
| 213 | DWORD DesiredAccess, |
| 214 | HANDLE *TokenHandle) |
| 215 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 216 | FIXME("(0x%08x,0x%08lx,%p): stub\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 217 | ProcessHandle,DesiredAccess, TokenHandle); |
| 218 | *TokenHandle = 0xcafe; |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | /****************************************************************************** |
| 223 | * NtOpenThreadToken [NTDLL] |
| 224 | */ |
| 225 | NTSTATUS WINAPI NtOpenThreadToken( |
| 226 | HANDLE ThreadHandle, |
| 227 | DWORD DesiredAccess, |
| 228 | BOOLEAN OpenAsSelf, |
| 229 | HANDLE *TokenHandle) |
| 230 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 231 | FIXME("(0x%08x,0x%08lx,0x%08x,%p): stub\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 232 | ThreadHandle,DesiredAccess, OpenAsSelf, TokenHandle); |
| 233 | *TokenHandle = 0xcafe; |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 234 | return 0; |
| 235 | } |
| 236 | |
| 237 | /****************************************************************************** |
| 238 | * NtAdjustPrivilegesToken [NTDLL] |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 239 | * |
| 240 | * FIXME: parameters unsafe |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 241 | */ |
| 242 | NTSTATUS WINAPI NtAdjustPrivilegesToken( |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 243 | IN HANDLE TokenHandle, |
Juergen Schmied | 3426d85 | 1999-02-19 16:29:05 +0000 | [diff] [blame] | 244 | IN BOOLEAN DisableAllPrivileges, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 245 | IN PTOKEN_PRIVILEGES NewState, |
| 246 | IN DWORD BufferLength, |
| 247 | OUT PTOKEN_PRIVILEGES PreviousState, |
| 248 | OUT PDWORD ReturnLength) |
| 249 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 250 | FIXME("(0x%08x,0x%08x,%p,0x%08lx,%p,%p),stub!\n", |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 251 | TokenHandle, DisableAllPrivileges, NewState, BufferLength, PreviousState, ReturnLength); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 256 | * NtQueryInformationToken [NTDLL.156] |
| 257 | * |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 258 | * NOTES |
| 259 | * Buffer for TokenUser: |
| 260 | * 0x00 TOKEN_USER the PSID field points to the SID |
| 261 | * 0x08 SID |
| 262 | * |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 263 | */ |
| 264 | NTSTATUS WINAPI NtQueryInformationToken( |
| 265 | HANDLE token, |
| 266 | DWORD tokeninfoclass, |
| 267 | LPVOID tokeninfo, |
| 268 | DWORD tokeninfolength, |
| 269 | LPDWORD retlen ) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 270 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 271 | FIXME("(%08x,%ld,%p,%ld,%p): stub\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 272 | token,tokeninfoclass,tokeninfo,tokeninfolength,retlen); |
| 273 | |
| 274 | switch (tokeninfoclass) |
| 275 | { case TokenGroups: /* 2 */ |
Patrik Stridvall | a9a671d | 1999-04-25 19:01:52 +0000 | [diff] [blame] | 276 | *retlen = sizeof (TOKEN_GROUPS); |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 277 | break; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 278 | case TokenUser: /* 1 */ |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 279 | { |
| 280 | int len = sizeof (TOKEN_USER)+ sizeof(SID); |
| 281 | *retlen = len; |
| 282 | if ( len <= tokeninfolength) |
| 283 | if( tokeninfo ) |
| 284 | { |
| 285 | TOKEN_USER * tuser = tokeninfo; |
| 286 | PSID sid = (PSID) &((LPBYTE)tokeninfo)[sizeof(TOKEN_USER)]; |
| 287 | SID_IDENTIFIER_AUTHORITY localSidAuthority = {SECURITY_NT_AUTHORITY}; |
| 288 | RtlInitializeSid(sid, &localSidAuthority, 1); |
| 289 | *(RtlSubAuthoritySid(sid, 0)) = SECURITY_INTERACTIVE_RID; |
| 290 | tuser->User.Sid = sid; |
| 291 | } |
| 292 | } |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 293 | break; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 294 | case TokenPrivileges: |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 295 | *retlen = sizeof (TOKEN_PRIVILEGES); |
| 296 | break; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 297 | case TokenOwner: |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 298 | *retlen = sizeof (TOKEN_OWNER); |
| 299 | break; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 300 | case TokenPrimaryGroup: |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 301 | *retlen = sizeof (TOKEN_PRIMARY_GROUP); |
| 302 | break; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 303 | case TokenDefaultDacl: |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 304 | *retlen = sizeof (TOKEN_DEFAULT_DACL); |
| 305 | break; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 306 | case TokenSource: |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 307 | *retlen = sizeof (TOKEN_SOURCE); |
| 308 | break; |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 309 | case TokenType: |
Juergen Schmied | 044db46 | 1999-12-11 23:19:54 +0000 | [diff] [blame] | 310 | *retlen = sizeof (TOKEN_TYPE); |
| 311 | break; |
| 312 | #if 0 |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 313 | case TokenImpersonationLevel: |
| 314 | case TokenStatistics: |
Patrik Stridvall | a9a671d | 1999-04-25 19:01:52 +0000 | [diff] [blame] | 315 | #endif /* 0 */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 318 | return 0; |
| 319 | } |
| 320 | |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 321 | /* |
| 322 | * Section |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 323 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 324 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 325 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 326 | * NtCreateSection [NTDLL] |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 327 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 328 | NTSTATUS WINAPI NtCreateSection( |
| 329 | OUT PHANDLE SectionHandle, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 330 | IN ACCESS_MASK DesiredAccess, |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 331 | IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL, |
| 332 | IN PLARGE_INTEGER MaximumSize OPTIONAL, |
| 333 | IN ULONG SectionPageProtection OPTIONAL, |
| 334 | IN ULONG AllocationAttributes, |
| 335 | IN HANDLE FileHandle OPTIONAL) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 336 | { |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 337 | FIXME("(%p,0x%08lx,%p,%p,0x%08lx,0x%08lx,0x%08x) stub\n", |
| 338 | SectionHandle,DesiredAccess, ObjectAttributes, |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 339 | MaximumSize,SectionPageProtection,AllocationAttributes,FileHandle); |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 340 | dump_ObjectAttributes(ObjectAttributes); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 341 | return 0; |
| 342 | } |
| 343 | |
| 344 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 345 | * NtOpenSection [NTDLL] |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 346 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 347 | NTSTATUS WINAPI NtOpenSection( |
| 348 | PHANDLE SectionHandle, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 349 | ACCESS_MASK DesiredAccess, |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 350 | POBJECT_ATTRIBUTES ObjectAttributes) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 351 | { |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 352 | FIXME("(%p,0x%08lx,%p),stub!\n", |
| 353 | SectionHandle,DesiredAccess,ObjectAttributes); |
| 354 | dump_ObjectAttributes(ObjectAttributes); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 355 | return 0; |
| 356 | } |
| 357 | |
| 358 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 359 | * NtQuerySection [NTDLL] |
| 360 | */ |
| 361 | NTSTATUS WINAPI NtQuerySection( |
| 362 | IN HANDLE SectionHandle, |
| 363 | IN PVOID SectionInformationClass, |
| 364 | OUT PVOID SectionInformation, |
| 365 | IN ULONG Length, |
| 366 | OUT PULONG ResultLength) |
| 367 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 368 | FIXME("(0x%08x,%p,%p,0x%08lx,%p) stub!\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 369 | SectionHandle,SectionInformationClass,SectionInformation,Length,ResultLength); |
| 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | /****************************************************************************** |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 374 | * NtMapViewOfSection [NTDLL] |
| 375 | * FUNCTION: Maps a view of a section into the virtual address space of a process |
| 376 | * |
| 377 | * ARGUMENTS: |
| 378 | * SectionHandle Handle of the section |
| 379 | * ProcessHandle Handle of the process |
| 380 | * BaseAddress Desired base address (or NULL) on entry |
| 381 | * Actual base address of the view on exit |
| 382 | * ZeroBits Number of high order address bits that must be zero |
| 383 | * CommitSize Size in bytes of the initially committed section of the view |
| 384 | * SectionOffset Offset in bytes from the beginning of the section to the beginning of the view |
| 385 | * ViewSize Desired length of map (or zero to map all) on entry |
| 386 | Actual length mapped on exit |
| 387 | * InheritDisposition Specified how the view is to be shared with |
| 388 | * child processes |
| 389 | * AllocateType Type of allocation for the pages |
| 390 | * Protect Protection for the committed region of the view |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 391 | */ |
| 392 | NTSTATUS WINAPI NtMapViewOfSection( |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 393 | HANDLE SectionHandle, |
| 394 | HANDLE ProcessHandle, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 395 | PVOID* BaseAddress, |
| 396 | ULONG ZeroBits, |
| 397 | ULONG CommitSize, |
| 398 | PLARGE_INTEGER SectionOffset, |
| 399 | PULONG ViewSize, |
| 400 | SECTION_INHERIT InheritDisposition, |
| 401 | ULONG AllocationType, |
| 402 | ULONG Protect) |
| 403 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 404 | FIXME("(0x%08x,0x%08x,%p,0x%08lx,0x%08lx,%p,%p,0x%08x,0x%08lx,0x%08lx) stub\n", |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 405 | SectionHandle,ProcessHandle,BaseAddress,ZeroBits,CommitSize,SectionOffset, |
| 406 | ViewSize,InheritDisposition,AllocationType,Protect); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 407 | return 0; |
| 408 | } |
| 409 | |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 410 | /* |
| 411 | * ports |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 412 | */ |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 413 | |
| 414 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 415 | * NtCreatePort [NTDLL] |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 416 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 417 | NTSTATUS WINAPI NtCreatePort(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 418 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 419 | FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4,x5); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 420 | return 0; |
| 421 | } |
| 422 | |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 423 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 424 | * NtConnectPort [NTDLL] |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 425 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 426 | NTSTATUS WINAPI NtConnectPort(DWORD x1,PUNICODE_STRING uni,DWORD x3,DWORD x4,DWORD x5,DWORD x6,DWORD x7,DWORD x8) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 427 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 428 | FIXME("(0x%08lx,%s,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 429 | x1,debugstr_w(uni->Buffer),x3,x4,x5,x6,x7,x8); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 430 | return 0; |
| 431 | } |
| 432 | |
| 433 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 434 | * NtListenPort [NTDLL] |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 435 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 436 | NTSTATUS WINAPI NtListenPort(DWORD x1,DWORD x2) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 437 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 438 | FIXME("(0x%08lx,0x%08lx),stub!\n",x1,x2); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 439 | return 0; |
| 440 | } |
| 441 | |
| 442 | /****************************************************************************** |
| 443 | * NtAcceptConnectPort [NTDLL] |
| 444 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 445 | NTSTATUS WINAPI NtAcceptConnectPort(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6) |
| 446 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 447 | FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4,x5,x6); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 448 | return 0; |
| 449 | } |
| 450 | |
| 451 | /****************************************************************************** |
| 452 | * NtCompleteConnectPort [NTDLL] |
| 453 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 454 | NTSTATUS WINAPI NtCompleteConnectPort(DWORD x1) |
| 455 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 456 | FIXME("(0x%08lx),stub!\n",x1); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 457 | return 0; |
| 458 | } |
| 459 | |
| 460 | /****************************************************************************** |
| 461 | * NtRegisterThreadTerminatePort [NTDLL] |
| 462 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 463 | NTSTATUS WINAPI NtRegisterThreadTerminatePort(DWORD x1) |
| 464 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 465 | FIXME("(0x%08lx),stub!\n",x1); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 466 | return 0; |
| 467 | } |
| 468 | |
| 469 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 470 | * NtRequestWaitReplyPort [NTDLL] |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 471 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 472 | NTSTATUS WINAPI NtRequestWaitReplyPort(DWORD x1,DWORD x2,DWORD x3) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 473 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 474 | FIXME("(0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3); |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 475 | return 0; |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 479 | * NtReplyWaitReceivePort [NTDLL] |
| 480 | */ |
| 481 | NTSTATUS WINAPI NtReplyWaitReceivePort(DWORD x1,DWORD x2,DWORD x3,DWORD x4) |
| 482 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 483 | FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4); |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | /* |
| 488 | * Misc |
| 489 | */ |
| 490 | |
| 491 | /****************************************************************************** |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 492 | * NtSetIntervalProfile [NTDLL] |
| 493 | */ |
| 494 | NTSTATUS WINAPI NtSetIntervalProfile(DWORD x1,DWORD x2) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 495 | FIXME("(0x%08lx,0x%08lx),stub!\n",x1,x2); |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 496 | return 0; |
| 497 | } |
| 498 | |
| 499 | /****************************************************************************** |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 500 | * NtQueryPerformanceCounter [NTDLL] |
| 501 | */ |
Juergen Schmied | 3426d85 | 1999-02-19 16:29:05 +0000 | [diff] [blame] | 502 | NTSTATUS WINAPI NtQueryPerformanceCounter( |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 503 | IN PLARGE_INTEGER Counter, |
| 504 | IN PLARGE_INTEGER Frequency) |
| 505 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 506 | FIXME("(%p, 0%p) stub\n", |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 507 | Counter, Frequency); |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 508 | return 0; |
| 509 | } |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 510 | |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 511 | /****************************************************************************** |
Patrik Stridvall | fcfacb9 | 2000-03-24 20:46:04 +0000 | [diff] [blame] | 512 | * NtCreateMailslotFile [NTDLL] |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 513 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 514 | NTSTATUS WINAPI NtCreateMailslotFile(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6,DWORD x7,DWORD x8) |
| 515 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 516 | FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4,x5,x6,x7,x8); |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 517 | return 0; |
| 518 | } |
| 519 | |
| 520 | /****************************************************************************** |
| 521 | * NtQuerySystemInformation [NTDLL.168] |
| 522 | * |
| 523 | * ARGUMENTS: |
| 524 | * SystemInformationClass Index to a certain information structure |
| 525 | * SystemTimeAdjustmentInformation SYSTEM_TIME_ADJUSTMENT |
| 526 | * SystemCacheInformation SYSTEM_CACHE_INFORMATION |
| 527 | * SystemConfigurationInformation CONFIGURATION_INFORMATION |
| 528 | * observed (class/len): |
| 529 | * 0x0/0x2c |
| 530 | * 0x12/0x18 |
| 531 | * 0x2/0x138 |
| 532 | * 0x8/0x600 |
| 533 | * SystemInformation caller supplies storage for the information structure |
| 534 | * Length size of the structure |
| 535 | * ResultLength Data written |
| 536 | */ |
| 537 | NTSTATUS WINAPI NtQuerySystemInformation( |
| 538 | IN SYSTEM_INFORMATION_CLASS SystemInformationClass, |
| 539 | OUT PVOID SystemInformation, |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 540 | IN ULONG Length, |
| 541 | OUT PULONG ResultLength) |
| 542 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 543 | FIXME("(0x%08x,%p,0x%08lx,%p) stub\n", |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 544 | SystemInformationClass,SystemInformation,Length,ResultLength); |
| 545 | ZeroMemory (SystemInformation, Length); |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 546 | return 0; |
| 547 | } |
| 548 | |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 549 | |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 550 | /****************************************************************************** |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 551 | * NtCreatePagingFile [NTDLL] |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 552 | */ |
Juergen Schmied | 026d9db | 1999-03-09 17:47:51 +0000 | [diff] [blame] | 553 | NTSTATUS WINAPI NtCreatePagingFile( |
| 554 | IN PUNICODE_STRING PageFileName, |
| 555 | IN ULONG MiniumSize, |
| 556 | IN ULONG MaxiumSize, |
| 557 | OUT PULONG ActualSize) |
Juergen Schmied | 6f4435b | 1999-02-13 07:35:31 +0000 | [diff] [blame] | 558 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 559 | FIXME("(%p(%s),0x%08lx,0x%08lx,%p),stub!\n", |
Juergen Schmied | d1f10c5 | 1999-04-11 14:53:24 +0000 | [diff] [blame] | 560 | PageFileName->Buffer, debugstr_w(PageFileName->Buffer),MiniumSize,MaxiumSize,ActualSize); |
Juergen Schmied | 276ef66 | 1998-12-24 14:34:55 +0000 | [diff] [blame] | 561 | return 0; |
| 562 | } |
| 563 | |
Juergen Schmied | d1f10c5 | 1999-04-11 14:53:24 +0000 | [diff] [blame] | 564 | /****************************************************************************** |
| 565 | * NtDisplayString [NTDLL.95] |
| 566 | * |
| 567 | * writes a string to the nt-textmode screen eg. during startup |
| 568 | */ |
| 569 | NTSTATUS WINAPI NtDisplayString ( |
| 570 | PUNICODE_STRING string) |
| 571 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 572 | TRACE("%p(%s)\n",string->Buffer, debugstr_w(string->Buffer)); |
Juergen Schmied | d1f10c5 | 1999-04-11 14:53:24 +0000 | [diff] [blame] | 573 | WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), string->Buffer, string->Length, 0, 0); |
| 574 | return 0; |
| 575 | } |
Marcus Meissner | eff4087 | 1999-12-10 03:27:15 +0000 | [diff] [blame] | 576 | |
| 577 | /****************************************************************************** |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 578 | * _alldiv [NTDLL.937] |
| 579 | * |
| 580 | * |
| 581 | */ |
| 582 | long long WINAPI _alldiv(LARGE_INTEGER a, LARGE_INTEGER b) |
| 583 | { |
| 584 | #if SIZEOF_LONG_LONG==8 |
| 585 | return (*(long long*)&a / *(long long*)&b); |
| 586 | #else |
Dan Scott | 4d8d8b5 | 2000-03-04 19:22:13 +0000 | [diff] [blame] | 587 | FIXME("stub\n"); |
| 588 | return 0; |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 589 | #endif |
| 590 | } |
| 591 | /****************************************************************************** |
| 592 | * _allmul [NTDLL.938] |
| 593 | * |
| 594 | * |
| 595 | */ |
| 596 | long long WINAPI _allmul(LARGE_INTEGER a, LARGE_INTEGER b) |
| 597 | { |
| 598 | #if SIZEOF_LONG_LONG==8 |
| 599 | return (*(long long*)&a * *(long long*)&b); |
| 600 | #else |
Dan Scott | 4d8d8b5 | 2000-03-04 19:22:13 +0000 | [diff] [blame] | 601 | FIXME("stub\n"); |
| 602 | return 0; |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 603 | #endif |
| 604 | } |
| 605 | |
| 606 | /****************************************************************************** |
Marcus Meissner | eff4087 | 1999-12-10 03:27:15 +0000 | [diff] [blame] | 607 | * NtPowerInformation [NTDLL] |
| 608 | * |
| 609 | */ |
| 610 | NTSTATUS WINAPI NtPowerInformation(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5) |
| 611 | { |
| 612 | FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub\n",x1,x2,x3,x4,x5); |
| 613 | return 0; |
| 614 | } |
Juergen Schmied | 02d45e5 | 2000-01-23 22:35:33 +0000 | [diff] [blame] | 615 | |
| 616 | /****************************************************************************** |
| 617 | * NtAllocateLocallyUniqueId |
| 618 | * |
| 619 | * FIXME: the server should do that |
| 620 | */ |
| 621 | NTSTATUS WINAPI NtAllocateLocallyUniqueId(PLUID Luid) |
| 622 | { |
| 623 | static LUID luid; |
| 624 | |
| 625 | FIXME("%p (0x%08lx%08lx)\n", Luid, luid.DUMMYSTRUCTNAME.HighPart, luid.DUMMYSTRUCTNAME.LowPart); |
| 626 | |
| 627 | luid.QuadPart++; |
| 628 | |
| 629 | Luid->QuadPart = luid.QuadPart; |
| 630 | return STATUS_SUCCESS; |
| 631 | } |