Click here to Skip to main content
15,900,378 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: About Memory initialization Pin
toxcct7-Nov-07 0:13
toxcct7-Nov-07 0:13 
AnswerRe: About Memory initialization Pin
toxcct7-Nov-07 0:08
toxcct7-Nov-07 0:08 
AnswerRe: About Memory initialization Pin
John R. Shaw7-Nov-07 0:56
John R. Shaw7-Nov-07 0:56 
QuestionHow to make a connection to MySQL in MFC? Pin
TooShy2Talk6-Nov-07 23:15
TooShy2Talk6-Nov-07 23:15 
QuestionRe: How to make a connection to MySQL in MFC? Pin
David Crow7-Nov-07 4:37
David Crow7-Nov-07 4:37 
AnswerRe: How to make a connection to MySQL in MFC? Pin
TooShy2Talk7-Nov-07 14:37
TooShy2Talk7-Nov-07 14:37 
QuestionRe: How to make a connection to MySQL in MFC? Pin
David Crow8-Nov-07 2:41
David Crow8-Nov-07 2:41 
QuestionDYNCALL(writeData)((UCHAR *) Pin
doc606-Nov-07 22:59
doc606-Nov-07 22:59 
The following bit of code is from the Atmel AtUsbHid example. Can someone please explain the line DYNCALL(writeData)((UCHAR *)"12") which i believe is part of a DLL, maybe....

I know the code turns on and off a LED but i want to know how the code works....

void CUsbHidDemoCodeDlg::OnLed2()
{
if(Led2 == false) {
Led2 = true;
m_Led2.SetWindowText(_T("LED 2 ON"));
DYNCALL(writeData)((UCHAR *)"12");
}
else {
Led2 = false;
m_Led2.SetWindowText(_T("LED 2 OFF"));
DYNCALL(writeData)((UCHAR *)"02");
}

}



Thanks

Don

AnswerRe: DYNCALL(writeData)((UCHAR *) Pin
Matthew Faithfull6-Nov-07 23:08
Matthew Faithfull6-Nov-07 23:08 
GeneralCompilation on dual-core Pin
hairy_hats6-Nov-07 22:37
hairy_hats6-Nov-07 22:37 
GeneralRe: Compilation on dual-core Pin
Matthew Faithfull6-Nov-07 23:00
Matthew Faithfull6-Nov-07 23:00 
GeneralRe: Compilation on dual-core Pin
hairy_hats6-Nov-07 23:04
hairy_hats6-Nov-07 23:04 
GeneralRe: Compilation on dual-core Pin
Matthew Faithfull6-Nov-07 23:15
Matthew Faithfull6-Nov-07 23:15 
QuestionRe: Compilation on dual-core Pin
David Crow7-Nov-07 4:40
David Crow7-Nov-07 4:40 
AnswerRe: Compilation on dual-core Pin
hairy_hats7-Nov-07 4:43
hairy_hats7-Nov-07 4:43 
QuestionAnother CAsyncSocket Problem Pin
TheInfernalCrow6-Nov-07 22:04
TheInfernalCrow6-Nov-07 22:04 
GeneralRe: Another CAsyncSocket Problem Pin
Matthew Faithfull6-Nov-07 22:45
Matthew Faithfull6-Nov-07 22:45 
GeneralRe: Another CAsyncSocket Problem Pin
TheInfernalCrow7-Nov-07 1:40
TheInfernalCrow7-Nov-07 1:40 
AnswerRe: Another CAsyncSocket Problem Pin
Mark Salsbery7-Nov-07 7:37
Mark Salsbery7-Nov-07 7:37 
GeneralRe: Another CAsyncSocket Problem Pin
TheInfernalCrow7-Nov-07 19:25
TheInfernalCrow7-Nov-07 19:25 
QuestionAdd an image on a button. Pin
CodingLover6-Nov-07 21:47
CodingLover6-Nov-07 21:47 
AnswerRe: Add an image on a button. [modified] Pin
Nelek6-Nov-07 22:16
protectorNelek6-Nov-07 22:16 
AnswerRe: Add an image on a button. Pin
Haroon Sarwar6-Nov-07 22:38
Haroon Sarwar6-Nov-07 22:38 
AnswerRe: Add an image on a button. Pin
Hamid_RT7-Nov-07 0:20
Hamid_RT7-Nov-07 0:20 
AnswerRe: Add an image on a button. Pin
David Crow7-Nov-07 4:41
David Crow7-Nov-07 4:41 

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.