mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-05 02:07:22 +00:00
27 lines
599 B
C
27 lines
599 B
C
/****************************************************************
|
|
*
|
|
* orca.h - extra functions included in ORCA/C
|
|
*
|
|
* March 1989
|
|
* Mike Westerfield
|
|
*
|
|
* Copyright 1989, 1993
|
|
* Byte Works, Inc.
|
|
*
|
|
****************************************************************/
|
|
|
|
#ifndef __orca__
|
|
#define __orca__
|
|
|
|
char *commandline(void);
|
|
void enddesk(void);
|
|
void endgraph(void);
|
|
char *shellid(void);
|
|
void startdesk(int);
|
|
void startgraph(int);
|
|
pascal void setfpeslot(int);
|
|
int toolerror(void);
|
|
int userid(void);
|
|
|
|
#endif
|