[win32] reverse integrate asperl branch contents (phew!)
[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 *patchlevel) =0;
17     virtual char* SiteLibPath(char *patchlevel) =0;
18 };
19
20 #endif  /* __Inc__IPerlEnv___ */
21