You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
594 B
C
35 lines
594 B
C
/*
|
|
MzScheme
|
|
Copyright (c) 1995 Matthew Flatt
|
|
All rights reserved.
|
|
|
|
Please see the full copyright in the documentation.
|
|
|
|
libscheme
|
|
Copyright (c) 1994 Brent Benson
|
|
All rights reserved.
|
|
*/
|
|
|
|
/* This file should be included by MzScheme dynamically-loaded
|
|
extenstion files */
|
|
|
|
#ifndef E_SCHEME_H
|
|
#define E_SCHEME_H
|
|
|
|
#define SCHEME_DIRECT_EMBEDDED 0
|
|
|
|
#include "scheme.h"
|
|
|
|
#ifdef CODEFRAGMENT_DYNAMIC_LOAD
|
|
#pragma export on
|
|
#endif
|
|
|
|
extern Scheme_Object *scheme_initialize(Scheme_Env *global_env);
|
|
|
|
#ifdef CODEFRAGMENT_DYNAMIC_LOAD
|
|
#pragma export off
|
|
#endif
|
|
|
|
#endif /* ! E_SCHEME_H */
|
|
|