/************************************************************************\
** **
** OS/2(r) Physical Device Driver Libraries **
** for Watcom C/C++ 10 **
** **
** COPYRIGHT: **
** **
** (C)ACPSoft 1996 **
** **
** DISCLAIMER OF WARRANTIES: **
** **
** The following [enclosed] code is provided to you "AS IS", **
** without warranty of any kind. You have a royalty-free right to **
** use, modify, reproduce and distribute the following code (and/or **
** any modified version) provided that you agree that Advanced **
** Gravis has no warranty obligations and shall not be liable for **
** any damages arising out of your use of this code, even if they **
** have been advised of the possibility of such damages. This **
** Copyright statement and Disclaimer of Warranties may not be **
** removed. **
** **
\************************************************************************/
/* open.c
*
* open code
* Executes in respose to DosOpen(Hello$)
*
* History:
*
* May 13, 96 Alger Pike Initial version
* Jun 30, 07 M Greene <greenemk@cox.net>
*/
#include <devhdr.h>
#include <devreqp.h>
void StratOpen(REQP_HEADER FAR* rp)
{
DosBeep(1440L, 1000L);
rp->status = RPDONE;
}
There are no comments on this page. [Add comment]