Make macglue.h C++ compatible.

This commit is contained in:
Jack Jansen 1999-09-30 11:14:49 +00:00
parent 9a41aa8a5a
commit c7fda7e195
1 changed files with 7 additions and 0 deletions

View File

@ -31,6 +31,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <Events.h>
#include <StandardFile.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Scheduler parameters */
typedef struct {
int check_interrupt; /* if true check for command-dot */
@ -124,3 +128,6 @@ void PyMac_Initialize(void); /* Initialize function for embedding Python */
long getfiletype(char *); /* Get file type */
int setfiletype(char *, long, long); /* Set file creator and type */
#ifdef __cplusplus
}
#endif