[asperl] added AS patch#7
[p5sagit/p5-mst-13.2.git] / ipenv.h
1 /*
2
3     ipenv.h
4     Interface for perl environment functions
5
6 */
7
8 #ifndef __Inc__IPerlEnv___
9 #define __Inc__IPerlEnv___
10
11 class IPerlEnv
12 {
13 public:
14     virtual char* Getenv(const char *varname, int &err) = 0;
15     virtual int Putenv(const char *envstring, int &err) = 0;
16     virtual char* LibPath(char *sfx, ...) =0;
17 };
18
19 #endif  /* __Inc__IPerlEnv___ */
20