00001 /****************************** Module Header ******************************\ 00002 * Module Name: queuec.c 00003 * 00004 * Copyright (c) 1985 - 1999, Microsoft Corporation 00005 * 00006 * This module contains the low-level code for working with the Q structure. 00007 * 00008 * History: 00009 * 11-Mar-1993 JerrySh Pulled functions from user\server. 00010 \***************************************************************************/ 00011 00012 #include "precomp.h" 00013 #pragma hdrstop 00014 00015 00016 /***************************************************************************\ 00017 * SetMessageQueue 00018 * 00019 * Dummy API for binary win32s compatibility. 00020 * 00021 * 12-1-92 sanfords created 00022 \***************************************************************************/ 00023 BOOL 00024 WINAPI 00025 SetMessageQueue( 00026 int cMessagesMax) 00027 { 00028 UNREFERENCED_PARAMETER(cMessagesMax); 00029 00030 return(TRUE); 00031 } 00032 00033