Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While compiling

#include "windows.h"
#include "stdafx.h"
#include "resource.h"
#include "ProgressDlg.h"
    ....  
    ...  
rItem.lParam   = (LPARAM)(DWORD_PTR) m_lsStatusMessages.back().c_str();

I am getting the error C2065: 'DWORD_PTR' : undeclared identifier

Am I missing any Includes.

share|improve this question

3 Answers

DWORD_PTR is defined in basetsd.h but you should include windows.h

share|improve this answer
My not be the answer. social.msdn.microsoft.com/forums/en-US/vcgeneral/thread/… – DumbCoder Sep 23 '10 at 12:04
Included the windows.h , Edited the question with updates – Simsons Sep 23 '10 at 12:10
#include "windows.h"
#include "stdafx.h"

Assuming you actually use the precompiled headers support in MSVC, this is your problem. You (try to) include windows.h before stdafx.h. Every line of code before #include "stdafx.h" is ignored. IIRC MSVC also give some warning about it in some versions.

Either put the #include "windows.h" into stdafx.h or move it below #include "stdafx.h".

share|improve this answer

If I remember correctly, you need at least one define. The basetsd.h contains something like

#if(_WIN32_WINNT >= 0x0400)

or

#if(WINVER >= 0x0502)

You can give it a shot and add

#define _WIN32_WINNT 0x0501
#define WINVER 0x0501

before you include your windows.h for Windows XP requirement settings.

An overview on preprocessor defines and windows header files can be found here.

share|improve this answer
Tried with it but Dint help , I am using VC++ 6.0 , If it helps at all – Simsons Sep 23 '10 at 12:34
1  
@Subhen: VC6 predates the introduction of DWORD_PTR. You would have to manually update the platform SDK to get it. See here: stackoverflow.com/questions/2723284 – Charles Bailey Sep 23 '10 at 13:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.