home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / CENVIW9.ZIP / WINBEEP.CMM < prev    next >
Text File  |  1994-03-08  |  515b  |  11 lines

  1. /*************************************************************************
  2.  *** WinBeep - Sample CEnvi for Windows program to demonstrate calling ***
  3.  *** ver.1     a dll function in a Windows library.  In this case,     ***
  4.  ***           will simply call the MessageBeep() function a few times ***
  5.  *************************************************************************/
  6.  
  7. #define  MESSAGE_BEEP_ORDINAL 104
  8. for ( i = 0; i < 3; i++ )
  9.    DynamicLink("USER.EXE",MESSAGE_BEEP_ORDINAL,SWORD16,PASCAL,0);
  10.  
  11.