2003-03-13 Danny Smith <dannysmith@users.sourceforge.net>
* include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect typedef. 2003-03-13 Bang Jun-Young <junyoung@netbsd.org> * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports. (Process32{First,Next}{,W}): Ditto. (Thread32{First,Next}): Ditto. * include/ntdef.h (PCUNICODE_STRING): Add typedef.
This commit is contained in:
parent
41ffdfa51e
commit
2359084b5b
|
@ -1,3 +1,15 @@
|
||||||
|
2003-03-13 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
|
||||||
|
typedef.
|
||||||
|
|
||||||
|
2003-03-13 Bang Jun-Young <junyoung@netbsd.org>
|
||||||
|
|
||||||
|
* lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
|
||||||
|
(Process32{First,Next}{,W}): Ditto.
|
||||||
|
(Thread32{First,Next}): Ditto.
|
||||||
|
* include/ntdef.h (PCUNICODE_STRING): Add typedef.
|
||||||
|
|
||||||
2003-03-12 Earnie Boyd <earnie@users.sf.net>
|
2003-03-12 Earnie Boyd <earnie@users.sf.net>
|
||||||
|
|
||||||
* include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
|
* include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
|
||||||
|
|
|
@ -138,8 +138,6 @@ typedef enum _MODE {
|
||||||
MaximumMode
|
MaximumMode
|
||||||
} MODE;
|
} MODE;
|
||||||
|
|
||||||
typedef PUNICODE_STRING PCUNICODE_STRING;
|
|
||||||
|
|
||||||
typedef struct _SINGLE_LIST_ENTRY {
|
typedef struct _SINGLE_LIST_ENTRY {
|
||||||
struct _SINGLE_LIST_ENTRY *Next;
|
struct _SINGLE_LIST_ENTRY *Next;
|
||||||
} SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
|
} SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
|
||||||
|
|
|
@ -31,6 +31,7 @@ typedef struct _UNICODE_STRING {
|
||||||
USHORT MaximumLength;
|
USHORT MaximumLength;
|
||||||
PWSTR Buffer;
|
PWSTR Buffer;
|
||||||
} UNICODE_STRING, *PUNICODE_STRING;
|
} UNICODE_STRING, *PUNICODE_STRING;
|
||||||
|
typedef const UNICODE_STRING* PCUNICODE_STRING;
|
||||||
typedef struct _STRING {
|
typedef struct _STRING {
|
||||||
USHORT Length;
|
USHORT Length;
|
||||||
USHORT MaximumLength;
|
USHORT MaximumLength;
|
||||||
|
|
|
@ -486,6 +486,10 @@ MapUserPhysicalPagesScatter@12
|
||||||
MapViewOfFile@20
|
MapViewOfFile@20
|
||||||
MapViewOfFileEx@24
|
MapViewOfFileEx@24
|
||||||
MapViewOfFileVlm@28
|
MapViewOfFileVlm@28
|
||||||
|
Module32First@8
|
||||||
|
Module32FirstW@8
|
||||||
|
Module32Next@8
|
||||||
|
Module32NextW@8
|
||||||
MoveFileA@8
|
MoveFileA@8
|
||||||
MoveFileW@8
|
MoveFileW@8
|
||||||
MoveFileExA@12
|
MoveFileExA@12
|
||||||
|
@ -518,6 +522,10 @@ PeekConsoleInputW@16
|
||||||
PeekNamedPipe@24
|
PeekNamedPipe@24
|
||||||
PostQueuedCompletionStatus@16
|
PostQueuedCompletionStatus@16
|
||||||
PrepareTape@12
|
PrepareTape@12
|
||||||
|
Process32First@8
|
||||||
|
Process32FirstW@8
|
||||||
|
Process32Next@8
|
||||||
|
Process32NextW@8
|
||||||
PulseEvent@4
|
PulseEvent@4
|
||||||
PurgeComm@8
|
PurgeComm@8
|
||||||
QueryDosDeviceA@12
|
QueryDosDeviceA@12
|
||||||
|
@ -671,6 +679,8 @@ SystemTimeToTzSpecificLocalTime@12
|
||||||
TerminateJobObject@8
|
TerminateJobObject@8
|
||||||
TerminateProcess@8
|
TerminateProcess@8
|
||||||
TerminateThread@8
|
TerminateThread@8
|
||||||
|
Thread32First@8
|
||||||
|
Thread32Next@8
|
||||||
TlsAlloc@0
|
TlsAlloc@0
|
||||||
TlsFree@4
|
TlsFree@4
|
||||||
TlsGetValue@4
|
TlsGetValue@4
|
||||||
|
|
Loading…
Reference in New Issue