Undoing accidental change

This commit is contained in:
Josh Yelon 2005-08-11 01:44:00 +00:00
parent 879261500c
commit c536465235
2 changed files with 5 additions and 7 deletions

View File

@ -18,7 +18,7 @@
<Tool
Name="VCNMakeTool"
BuildCommandLine="cd .. &amp; makepanda\makepanda --everything --installer"
Output="..\built\python\python.exe"/>
Output="..\built\bin\ppython.exe"/>
</Configuration>
</Configurations>
<References>

View File

@ -51,15 +51,10 @@ public:
INLINE static int get_num_args();
INLINE static string get_arg(int n);
static Filename get_cwd();
PUBLISHED:
INLINE static string get_binary_name();
INLINE static string get_dtool_name();
PUBLISHED:
string ns_get_binary_name() const;
string ns_get_dtool_name() const;
static Filename get_cwd();
private:
bool ns_has_environment_variable(const string &var) const;
@ -71,6 +66,9 @@ private:
int ns_get_num_args() const;
string ns_get_arg(int n) const;
string ns_get_binary_name() const;
string ns_get_dtool_name() const;
static ExecutionEnvironment *get_ptr();
void read_environment_variables();