Leaked source code of windows server 2003
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.

35 lines
899 B

  1. /****************************** Module Header ******************************\
  2. * Module Name: queuec.c
  3. *
  4. * Copyright (c) 1985 - 1999, Microsoft Corporation
  5. *
  6. * This module contains the low-level code for working with the Q structure.
  7. *
  8. * History:
  9. * 11-Mar-1993 JerrySh Pulled functions from user\server.
  10. \***************************************************************************/
  11. #include "precomp.h"
  12. #pragma hdrstop
  13. /***************************************************************************\
  14. * SetMessageQueue
  15. *
  16. * Dummy API for binary win32s compatibility.
  17. *
  18. * 12-1-92 sanfords created
  19. \***************************************************************************/
  20. FUNCLOG1(LOG_GENERAL,BOOL , WINAPI, SetMessageQueue, int, cMessagesMax)
  21. BOOL
  22. WINAPI
  23. SetMessageQueue(
  24. int cMessagesMax)
  25. {
  26. UNREFERENCED_PARAMETER(cMessagesMax);
  27. return(TRUE);
  28. }