Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
406 B

#include <windows.h>
#include <windowsx.h>
#include <ntlmsspi.h>
#include <debug.h>
PVOID
SspAlloc(
int Size
)
{
PVOID Buffer;
Buffer = GlobalAllocPtr(GPTR | GMEM_SHARE, Size);
ASSERT (Buffer != NULL);
if (Buffer == NULL) {
return (NULL);
}
return (Buffer);
}
void
SspFree(
PVOID Buffer
)
{
ASSERT (Buffer != NULL);
GlobalFreePtr(Buffer);
}