l2 = l;
for (int i = l-1; i >= 0; i--) {
- c = loc[i];
+ c = loc[(unsigned int) i];
if (c == _T('#')) l2 = i + 1;
if (c == _T('.')) {ext = loc.Right(l2-i-1); break;}
if ((c == _T('/')) || (c == _T('\\')) || (c == _T(':'))) {return wxEmptyString;}
m_Path = location;
for (i = m_Path.Length()-1; i >= 0; i--)
- if (m_Path[i] == _T('\\')) m_Path.GetWritableChar(i) = _T('/'); // wanna be windows-safe
+ if (m_Path[(unsigned int) i] == _T('\\')) m_Path.GetWritableChar(i) = _T('/'); // wanna be windows-safe
if (is_dir == FALSE)
{
for (i = m_Path.Length()-1; i >= 0; i--)
{
- if (m_Path[i] == _T('/'))
+ if (m_Path[(unsigned int) i] == _T('/'))
{
- if ((i > 1) && (m_Path[i-1] == _T('/')) && (m_Path[i-2] == _T(':')))
+ if ((i > 1) && (m_Path[(unsigned int) (i-1)] == _T('/')) && (m_Path[(unsigned int) (i-2)] == _T(':')))
{
i -= 2;
continue;
break;
}
}
- else if (m_Path[i] == _T(':')) {
+ else if (m_Path[(unsigned int) i] == _T(':')) {
pathpos = i;
break;
}
{
for (i = 0; i < (int) m_Path.Length(); i++)
{
- if (m_Path[i] == _T(':'))
+ if (m_Path[(unsigned int) i] == _T(':'))
{
//m_Path << _T('/');
m_Path.Remove(i+1);
meta = 0;
for (i = 0; i < ln; i++)
{
- if (loc[i] == _T('\\')) loc.GetWritableChar(i) = _T('/'); // wanna be windows-safe
- if (!meta) switch (loc[i])
+ if (loc[(unsigned int) i] == _T('\\')) loc.GetWritableChar(i) = _T('/'); // wanna be windows-safe
+ if (!meta) switch (loc[(unsigned int) i])
{
- case _T('/') : case _T(':') : case _T('#') : meta = loc[i];
+ case _T('/') : case _T(':') : case _T('#') : meta = loc[(unsigned int) i];
}
}
m_LastName = wxEmptyString;
#include "wx/stream.h"
#include "wx/wfstream.h"
#include "wx/zipstream.h"
+
+/* Not the right solution (paths in makefiles) but... */
+#ifdef __BORLANDC__
+#include "../common/unzip.h"
+#else
#include "unzip.h"
+#endif
+
wxZipInputStream::wxZipInputStream(const wxString& archive, const wxString& file) : wxInputStream()
{
-# This file was automatically generated by tmake at 00:42, 1999/07/27
+
+
+# This file was automatically generated by tmake at 17:00, 1999/08/06
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE B32.T!
#
$(LIBTARGET): $(DUMMY).obj $(OBJECTS)
-erase $(LIBTARGET)
- tlib $(LIBTARGET) /P512 @&&!
+ tlib $(LIBTARGET) /P1024 @&&!
+$(OBJECTS:.obj =.obj +) +$(PERIPH_LIBS:.lib =.lib +)
!