Current state of my dtmail work.
Mostly #ifdefs and casts; also, do not redefine strcasestr(). This will probably be needed for Linux too when compiling without -fpermissive.
This commit is contained in:
committed by
Jon Trulson
parent
7c3a972d32
commit
e3ad7e24e3
@@ -103,7 +103,7 @@ class BufferMemory : public Buffer {
|
||||
virtual int getSize(void); // get total size of the buffer
|
||||
|
||||
private:
|
||||
#if !defined(linux)
|
||||
#if !defined(linux) && !defined(CSRG_BASED)
|
||||
class Chunk;
|
||||
#endif
|
||||
|
||||
|
||||
@@ -284,7 +284,7 @@ extern "C" {
|
||||
extern const char ** DtMailTransportEnumerate(DtMailSession,
|
||||
DtMailEnv *);
|
||||
|
||||
extern DtMailTransportSubmit(DtMailTransport,
|
||||
extern int DtMailTransportSubmit(DtMailTransport,
|
||||
DtMailEnv *,
|
||||
DtMailMessage);
|
||||
|
||||
|
||||
@@ -120,7 +120,7 @@ class Condition : public DtCPlusPlusAllocator {
|
||||
|
||||
int state(void);
|
||||
int operator=(int);
|
||||
operator += (int);
|
||||
int operator += (int);
|
||||
operator int(void);
|
||||
|
||||
void wait(void);
|
||||
|
||||
Reference in New Issue
Block a user