Click here to Skip to main content
15,903,175 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCapturing TCP/IP packets in (DOS) Pin
rbwest865-Apr-09 21:11
rbwest865-Apr-09 21:11 
AnswerRe: Capturing TCP/IP packets in (DOS) Pin
Garth J Lancaster5-Apr-09 21:37
professionalGarth J Lancaster5-Apr-09 21:37 
AnswerRe: Capturing TCP/IP packets in (DOS) Pin
Iain Clarke, Warrior Programmer5-Apr-09 22:21
Iain Clarke, Warrior Programmer5-Apr-09 22:21 
GeneralRe: Capturing TCP/IP packets in (DOS) Pin
rbwest866-Apr-09 4:47
rbwest866-Apr-09 4:47 
GeneralRe: Capturing TCP/IP packets in (DOS) Pin
Iain Clarke, Warrior Programmer6-Apr-09 6:31
Iain Clarke, Warrior Programmer6-Apr-09 6:31 
QuestionRe: Capturing TCP/IP packets in (DOS) Pin
rbwest867-Apr-09 23:40
rbwest867-Apr-09 23:40 
QuestionX64 compilation problems Pin
Varghese Paul M5-Apr-09 20:40
Varghese Paul M5-Apr-09 20:40 
AnswerRe: X64 compilation problems Pin
Stuart Dootson5-Apr-09 22:14
professionalStuart Dootson5-Apr-09 22:14 
Varghese Paul M wrote:
1. I am using many third party libraries in my WIN32 project in which one of them uses old iostream functions. It gives me linker error LNK1104: cannot open file 'LIBCIMT.LIB' when I compile in X64 mode. I have the source code of the library with me. I tried recompiling the third party library using the new iostream header files under VS2008, but it gives me compilation errors which seems to be some in-compatibility issues of new and old iostreams.


That sounds about right. I suspect you're going to have to bite the bullet & just start going through them, fixing them.

One thing to remember is that (IIRC) old iostreams weren't in the std namespace, new ones are. Also - this page has some handy migration hints[^].

Varghese Paul M wrote:
2. In my project, I use both SQL and MAPI. The project compiles and runs perfectly in WIN32 mode. But the same gives me compilation error C2371: 'BOOKMARK' : redefinition; different basic types
Here is a sample code to reproduce the problem.


You were lucky before. MAPI and SQL both define BOOKMARK. They happened to both be 32-bit, but now they're not. The only things I can suggest are 1) separating SQL and MAPI functionality into separate source files, or 2) putting (say) the MAPI stuff into a namespace like this:

namespace MAPI
{
   #include <mapix.h>
}


and either using using namespace MAPI; or explicitly identifying things in this new MAPI namespace.

Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

QuestionVideo Capture Pin
tns_ranjith5-Apr-09 20:23
tns_ranjith5-Apr-09 20:23 
QuestionHow to make MessageBox () to behave as AfxMessageBox (); Pin
kapardhi5-Apr-09 19:08
kapardhi5-Apr-09 19:08 
AnswerRe: How to make MessageBox () to behave as AfxMessageBox (); Pin
kapardhi5-Apr-09 19:15
kapardhi5-Apr-09 19:15 
GeneralRe: How to make MessageBox () to behave as AfxMessageBox (); Pin
Hamid_RT5-Apr-09 19:40
Hamid_RT5-Apr-09 19:40 
QuestionRe: How to make MessageBox () to behave as AfxMessageBox (); Pin
Iain Clarke, Warrior Programmer5-Apr-09 22:23
Iain Clarke, Warrior Programmer5-Apr-09 22:23 
AnswerRe: How to make MessageBox () to behave as AfxMessageBox (); Pin
peaqea5-Apr-09 19:21
peaqea5-Apr-09 19:21 
GeneralRe: How to make MessageBox () to behave as AfxMessageBox (); Pin
gamefreak229119-Apr-09 16:20
gamefreak229119-Apr-09 16:20 
QuestionCRichEditCtrl on CMDIChildWnd not working Pin
prithaa5-Apr-09 18:11
prithaa5-Apr-09 18:11 
AnswerRe: CRichEditCtrl on CMDIChildWnd not working Pin
prithaa5-Apr-09 20:20
prithaa5-Apr-09 20:20 
QuestionClassWizard not displayed Pin
prithaa5-Apr-09 17:31
prithaa5-Apr-09 17:31 
AnswerRe: ClassWizard not displayed Pin
peaqea5-Apr-09 19:36
peaqea5-Apr-09 19:36 
QuestionRe: ClassWizard not displayed Pin
David Crow6-Apr-09 6:38
David Crow6-Apr-09 6:38 
AnswerRe: ClassWizard not displayed Pin
prithaa7-Apr-09 2:32
prithaa7-Apr-09 2:32 
QuestionPC based application using Microsoft Bluetooth Stack Pin
Kevin Geary5-Apr-09 16:47
Kevin Geary5-Apr-09 16:47 
AnswerRe: PC based application using Microsoft Bluetooth Stack Pin
Soundman32.26-Apr-09 0:32
Soundman32.26-Apr-09 0:32 
GeneralRe: PC based application using Microsoft Bluetooth Stack Pin
Kevin Geary6-Apr-09 1:43
Kevin Geary6-Apr-09 1:43 
GeneralRe: PC based application using Microsoft Bluetooth Stack Pin
Soundman32.26-Apr-09 1:53
Soundman32.26-Apr-09 1:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.