Cant use Win32 API()

From: Karam Chand <karam_chand03(at)yahoo(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Cant use Win32 API()
Date: 2004-03-08 08:40:45
Message-ID: 20040308084045.36365.qmail@web60802.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello,

I want to implement HAND_CURSOR for my app so I have
ot ifdef SetCursor() and load it accordingly in my
windows app.

Here is the code I am using:

#ifdef _WIN32
m_HandCursor = wxCursor ( wxCURSOR_HAND );
#else
m_HandCursor = wxCursor ( (WXHCURSOR) LoadCursor (
NULL, IDC_HAND ) );
#endif

If I compile it is giving me error:

error C2065: 'LoadCursor' : undeclared identifier
error C2065: 'IDC_HAND' : undeclared identifier

I presume that it is not working since I have not
included windows.h. So I go ahead and include it:

#ifdef _WIN32
#include <windows.h>
#endif

Now, if I compile it is giving me errors in
wxBufferedPaintDC.DrawText() which I am using in my
app. VC 6.0 is giving me:

'DrawTextA' : is not a member of 'wxBufferedPaintDC'
h:\wxwin\include\wx\dcbuffer.h(85) : see
declaration of 'wxBufferedPaintDC'

Can somebody tell me what I am doing wrong? Am I
missing something

Karam

__________________________________
Do you Yahoo!?
Yahoo! Search - Find what youre looking for faster
http://search.yahoo.com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message sferriol 2004-03-08 09:41:32 faster SELECT
Previous Message Christian Rank 2004-03-08 06:59:03 Re: ECPG - bug in EXEC SQL WHENEVER NOT FOUND?