mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-19 09:31:40 +00:00
36 lines
877 B
C++
36 lines
877 B
C++
|
/*****************************************************************
|
||
|
*
|
||
|
* HyperStudio New Button Action (NBA)
|
||
|
*
|
||
|
* This sample is a framework program, showing the essential parts
|
||
|
* of a HyperStudio NBA.
|
||
|
*
|
||
|
* For complete details on the requirements for HyperStudio NBAs,
|
||
|
* contact Roger Wagner Publishing. When this sample was written,
|
||
|
* details for writing HyperStudio NDAs were available in disk form
|
||
|
* for $10.
|
||
|
*
|
||
|
* Build this program using the script xcmd.make. This script has
|
||
|
* quite a few comments about the build process, so it's worth
|
||
|
* loading the scrept and reading the comments.
|
||
|
*
|
||
|
* By Mike Westerfield
|
||
|
*
|
||
|
* Copyright 1993
|
||
|
* Byte Works, Inc.
|
||
|
*
|
||
|
*****************************************************************/
|
||
|
|
||
|
#pragma keep "nba"
|
||
|
#pragma lint -1
|
||
|
#pragma nba main
|
||
|
|
||
|
#include "HyperStudio.h"
|
||
|
#include <misctool.h>
|
||
|
|
||
|
void main (HSParamPtr parm)
|
||
|
|
||
|
{
|
||
|
SysBeep();
|
||
|
}
|