passing a string to a dll
- From: "SteveR" <srussell@xxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 17 Sep 2007 21:34:09 -0400
I am working with the first dll I've ever created. I am testing with this
function:
bool DLLRect::PullWhisker(CString s)
{
if(s != _T("12345") )
::Beep(1000,200);
return true;
}
In my view:
DLLRect r;
r.PullWhisker(_T("12345") );
Why am I getting that beep, i.e. why is the string not recognized?
.
- Follow-Ups:
- Re: passing a string to a dll
- From: David Webber
- Re: passing a string to a dll
- From: Joseph M . Newcomer
- Re: passing a string to a dll
- From: Giovanni Dicanio
- Re: passing a string to a dll
- From: Tom Serface
- Re: passing a string to a dll
- Prev by Date: Re: Handling focus change on child frame
- Next by Date: Re: How to use the API OpenProcess?
- Previous by thread: OT: OTOH, you folks are smart ...
- Next by thread: Re: passing a string to a dll
- Index(es):
Relevant Pages
|