mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-01 13:29:32 +00:00
ab975b611c
These are the samples from ORCA/C 2.1.0, converted to LF line endings.
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();
|
|
}
|