Source code of Windows XP (NT5)
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.

25 lines
393 B

  1. /*++
  2. *
  3. * WOW v1.0
  4. *
  5. * Copyright (c) 1991, Microsoft Corporation
  6. *
  7. * WSMAN.C
  8. * WOW32 16-bit Sound API support (manually-coded thunks)
  9. *
  10. * History:
  11. * Created 27-Jan-1991 by Jeff Parsons (jeffpar)
  12. --*/
  13. #include "precomp.h"
  14. #pragma hdrstop
  15. MODNAME(wsman.c);
  16. ULONG FASTCALL WS32DoBeep(PVDMFRAME pFrame)
  17. {
  18. UNREFERENCED_PARAMETER(pFrame);
  19. return (ULONG)MessageBeep(0);
  20. }