home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
source
/
macvglph.cpt
/
MacVogl-alpha1
/
yobbarays.c
< prev
Wrap
Text File
|
1991-10-15
|
456b
|
31 lines
struct YOBBA {
union {
struct {
unsigned alpha : 1;
unsigned beta : 2;
unsigned fixe : 3;
unsigned kralb : 1;
} vals;
struct {
unsigned char yobbav;
} yobbavals;
} yobba;
} *yobbaray;
/*
* yobbarays
*
* Turns on (or off) yobba rays, as described by Larry Dart's friend.
*
* onoff <> 0 - YOBBARAYS ON.
* onoff = 0 - YOBBARAYS OFF.
*/
void
yobbarays(onoff)
int onoff;
{
yobbaray = (struct YOBBA *)onoff;
}