4 Replies Last post: Dec 11, 2009 6:35 AM by joegen  
Guest

May 11, 2007 9:31 AM

[OpenSIPStack] Error OpenSIPStack

Hi,


When I use the lib file who as generate by the opensipstack porject, I have this error...


Catastrophic failure, PProcess::Current() = NULL!!


Must I initiate something before creating a SoftPhoneInterface?


Thx,

Jeremy Counet.

[att1.html]


This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
opensipstack-devel mailing list
opensipstack-devel at lists dot sourceforge dot net
https://lists.sourceforge.net/lists/listinfo/opensipstack-devel
Guest
1. May 11, 2007 10:19 AM in response to: Guest
Re: [OpenSIPStack] Error OpenSIPStack
OpenSIPStack requires that PProcess is created first before any other
objects. If you are using it in an MFC project you may do this by
declaring PProcess as a member variable of CWinApp

class COSSPhoneMFCApp : public CWinApp
{
public:
/**** OpenSIPStack Start ****/
class PWLibProcess : public PProcess {
PCLASSINFO(PWLibProcess, PProcess);
void Main() { }
} pwlibProcess;
/**** OpenSIPStack End ****/


If you are using OpenSIPStack in a console application, make sure you
use PProcess::Main() instead of creating your own int main() method

class YourProcess : public PProcess
{
public:
PCLASSINFO( YourProcess , PProcess );
void Main()
{
/// your code here
}
};

PCREATE_PROCESS( YourProcess );

The PCREATE_PROCESS creates the int main() for you.

Joegen

Counet Jérémy wrote:


Hi,

When I use the lib file who as generate by the opensipstack porject, I
have this error?

Catastrophic failure, PProcess::Current() = NULL!!

Must I initiate something before creating a SoftPhoneInterface?

Thx,

Jeremy Counet.


This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/


_______________________________________________
opensipstack-devel mailing list
opensipstack-devel at lists dot sourceforge dot net
https://lists.sourceforge.net/lists/listinfo/opensipstack-devel


This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
opensipstack-devel mailing list
opensipstack-devel at lists dot sourceforge dot net
https://lists.sourceforge.net/lists/listinfo/opensipstack-devel
Guest
2. May 11, 2007 7:34 PM in response to: Guest
Re: [OpenSIPStack] Error OpenSIPStack
It wont let me do that. It says I have an old version of GTK installed.
Is there a way to remove the old GTK? I can''t seem to find it as a
previously installed program.


Joegen E. Baclor wrote:

OpenSIPStack requires that PProcess is created first before any other
objects. If you are using it in an MFC project you may do this by
declaring PProcess as a member variable of CWinApp

class COSSPhoneMFCApp : public CWinApp
{
public:
/**** OpenSIPStack Start ****/
class PWLibProcess : public PProcess {
PCLASSINFO(PWLibProcess, PProcess);
void Main() { }
} pwlibProcess;
/**** OpenSIPStack End ****/


If you are using OpenSIPStack in a console application, make sure you
use PProcess::Main() instead of creating your own int main() method

class YourProcess : public PProcess
{
public:
PCLASSINFO( YourProcess , PProcess );
void Main()
{
/// your code here
}
};

PCREATE_PROCESS( YourProcess );

The PCREATE_PROCESS creates the int main() for you.

Joegen

Counet Jérémy wrote:

Hi,

When I use the lib file who as generate by the opensipstack porject, I
have this error?

Catastrophic failure, PProcess::Current() = NULL!!

Must I initiate something before creating a SoftPhoneInterface?

Thx,

Jeremy Counet.


This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/


_______________________________________________
opensipstack-devel mailing list
opensipstack-devel at lists dot sourceforge dot net
https://lists.sourceforge.net/lists/listinfo/opensipstack-devel

This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
opensipstack-devel mailing list
opensipstack-devel at lists dot sourceforge dot net
https://lists.sourceforge.net/lists/listinfo/opensipstack-devel


This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
opensipstack-devel mailing list
opensipstack-devel at lists dot sourceforge dot net
https://lists.sourceforge.net/lists/listinfo/opensipstack-devel
Click to view zahra_d84's profile   1 posts since
Dec 9, 2009
3. Dec 10, 2009 1:20 AM in response to: Guest
Re: [OpenSIPStack] Error OpenSIPStack

hi.

i add example code to project but i get more error in the ptlib.plz help me for solve errors.thanks.

i add:

// EitsCoPhone.h : main header file for the PROJECT_NAME application
//

#pragma once

#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif

#include "resource.h" // main symbols

// CEitsCoPhoneApp:
// See EitsCoPhone.cpp for the implementation of this class
//

class CEitsCoPhoneApp : public CWinApp
{
public:
class PWLibProcess : public PProcess
{
PCLASSINFO(PWLibProcess, PProcess);
void Main() { }
} pwlibProcess;

CEitsCoPhoneApp();

// Overrides
public:
virtual BOOL InitInstance();

// Implementation

DECLARE_MESSAGE_MAP()
};

extern CEitsCoPhoneApp theApp;

I Get Errors:

1>------ Rebuild All started: Project: EitsCoPhone, Configuration: Debug Win32


1>Deleting intermediate and output files for project 'EitsCoPhone', configuration 'Debug|Win32'
1>Generating map file for help compiler...
1>Making help file...
1> 1 file(s) copied.
1>Compiling...
1>stdafx.cpp
1>Compiling...
1>AnswerPanel.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>Audio.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>AudioDevicesDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>CallDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>d:\project\eitscophone\eitscophone\calldialog.cpp(87) : warning C4018: '<' : signed/unsigned mismatch
1>d:\project\eitscophone\eitscophone\calldialog.cpp(90) : warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
1>CallIMDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>d:\project\eitscophone\eitscophone\callimdialog.cpp(93) : warning C4018: '<' : signed/unsigned mismatch
1>d:\project\eitscophone\eitscophone\callimdialog.cpp(95) : warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
1>CallingPanel.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>CallPanelBase.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>Codecs.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>d:\project\eitscophone\eitscophone\codecs.cpp(183) : warning C4804: '<' : unsafe use of type 'bool' in operation
1>DetailInCall.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>EitsCoPhone.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>EitsCoPhoneDlg.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>FAX.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>FxButton.cpp
1>d:\project\eitscophone\eitscophone\fxbutton.cpp(1134) : warning C4996: 'wcscpy' was declared deprecated
1> c:\program files\microsoft visual studio 8\vc\include\string.h(250) : see declaration of 'wcscpy'
1> Message: 'This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>General.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>H323.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>IMDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>InCallPanel.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>IVR.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>mfcEndPoint.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>d:\project\eitscophone\eitscophone\mfcendpoint.cpp(683) : fatal error C1903: unable to recover from previous error(s); stopping compilation
1>MyTabCtrl.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>Generating Code...
1>Compiling...
1>Networking.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>OptionsDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>PresenceDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>Routing.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>SIP.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>SpeedDialDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>Tracing.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>Video.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>VideoControlDialog.cpp
1>c:\ptlib\include\ptlib\contain.h(64) : error C2146: syntax error : missing ';' before identifier 'count'
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(64) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\contain.h(55) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\contain.h(60) : error C2614: 'PContainerReference' : illegal member initialization: 'count' is not a base or member
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\semaphor.h(118) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(190) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(190) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(241) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(241) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(330) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(330) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2059: syntax error : ')'
1>c:\ptlib\include\ptlib\thread.h(337) : error C2143: syntax error : missing ')' before ';'
1>c:\ptlib\include\ptlib\thread.h(339) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\ptlib\include\ptlib\thread.h(339) : error C2143: syntax error : missing ',' before '&'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2535: 'PThread *PThread::Create(const int)' : member function already defined or declared
1> c:\ptlib\include\ptlib\thread.h(329) : see declaration of 'PThread::Create'
1>c:\ptlib\include\ptlib\thread.h(341) : error C2065: 'notifier' : undeclared identifier
1>c:\ptlib\include\ptlib\thread.h(341) : error C2597: illegal reference to non-static member 'PThread::threadName'
1>c:\ptlib\include\ptbuildopts.h(56) : warning C4005: 'WINVER' : macro redefinition
1> d:\project\eitscophone\eitscophone\stdafx.h(18) : see previous definition of 'WINVER'
1>Generating Code...
1>Build log was saved at "file://d:\project\EitsCoPhone\EitsCoPhone\Debug\BuildLog.htm"
1>EitsCoPhone - 561 error(s), 34 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
Click to view joegen's profile   519 posts since
Apr 28, 2007
4. Dec 11, 2009 6:35 AM in response to: zahra_d84
Re: [OpenSIPStack] Error OpenSIPStack
It looks like your opensipstack project is seeing multiple copies of ptlib. OpenSIPStack has ptlib built-in. If you have another copy of ptlib in you box, make sure you ignore it when running configure.