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
787 B

/****************************** Module Header ******************************\
* Module Name: queuec.c
*
* Copyright (c) 1985-93, Microsoft Corporation
*
* This module contains the low-level code for working with the Q structure.
*
* History:
* 11-Mar-1993 JerrySh Pulled functions from user\server.
\***************************************************************************/
#include "precomp.h"
#pragma hdrstop
/***************************************************************************\
* SetMessageQueue
*
* Dummy API for binary win32s compatibility.
*
* 12-1-92 sanfords created
\***************************************************************************/
BOOL
WINAPI
SetMessageQueue(
int cMessagesMax)
{
UNREFERENCED_PARAMETER(cMessagesMax);
return(TRUE);
}