Click here to Skip to main content
15,892,537 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Is it possible to send files through Telnet? Pin
Mike Dimmick23-Aug-06 13:55
Mike Dimmick23-Aug-06 13:55 
QuestionSemaphore count Pin
Julberto Danray23-Aug-06 10:56
Julberto Danray23-Aug-06 10:56 
AnswerRe: Semaphore count Pin
Michael Dunn23-Aug-06 12:13
sitebuilderMichael Dunn23-Aug-06 12:13 
AnswerRe: Semaphore count Pin
Julberto Danray23-Aug-06 14:10
Julberto Danray23-Aug-06 14:10 
AnswerRe: Semaphore count Pin
Joe Woodbury23-Aug-06 12:17
professionalJoe Woodbury23-Aug-06 12:17 
GeneralRe: Semaphore count Pin
Julberto Danray23-Aug-06 16:16
Julberto Danray23-Aug-06 16:16 
GeneralRe: Semaphore count Pin
Joe Woodbury23-Aug-06 16:45
professionalJoe Woodbury23-Aug-06 16:45 
AnswerRe: Semaphore count Pin
tyftyftyf22-Nov-09 16:03
tyftyftyf22-Nov-09 16:03 
If you want to use GetSemaphoreCount(), try Linux Smile | :)

In windows, such function could be

long GetSemaphoreCount(HANDLE hSem)
{
long tmp=0;
if (WAIT_TIMEOUT!=WaitForSingleObject(hSem,0)) ReleaseSemaphore(hSem,1,tmp);
return tmp;
}

Good luck
QuestionDoes anybody recognise this... Pin
Waldermort23-Aug-06 10:36
Waldermort23-Aug-06 10:36 
AnswerRe: Does anybody recognise this... Pin
Rick York23-Aug-06 11:29
mveRick York23-Aug-06 11:29 
GeneralRe: Does anybody recognise this... Pin
Waldermort23-Aug-06 12:42
Waldermort23-Aug-06 12:42 
GeneralRe: Does anybody recognise this... Pin
Rage23-Aug-06 21:20
professionalRage23-Aug-06 21:20 
GeneralRe: Does anybody recognise this... Pin
Waldermort24-Aug-06 4:31
Waldermort24-Aug-06 4:31 
QuestionSetting edit box color Pin
Oliver12323-Aug-06 10:01
Oliver12323-Aug-06 10:01 
AnswerRe: Setting edit box color Pin
eusto23-Aug-06 10:13
eusto23-Aug-06 10:13 
AnswerRe: Setting edit box color Pin
David Crow23-Aug-06 10:29
David Crow23-Aug-06 10:29 
AnswerRe: Setting edit box color Pin
Hamid_RT24-Aug-06 0:51
Hamid_RT24-Aug-06 0:51 
QuestionHow can I get Windows installation date ? Pin
koloporanistka23-Aug-06 8:25
koloporanistka23-Aug-06 8:25 
AnswerRe: How can I get Windows installation date ? Pin
Jun Du23-Aug-06 8:40
Jun Du23-Aug-06 8:40 
GeneralRe: How can I get Windows installation date ? Pin
koloporanistka23-Aug-06 8:44
koloporanistka23-Aug-06 8:44 
AnswerRe: How can I get Windows installation date ? Pin
RicoH24-Aug-06 0:52
RicoH24-Aug-06 0:52 
GeneralRe: How can I get Windows installation date ? Pin
Jun Du24-Aug-06 14:17
Jun Du24-Aug-06 14:17 
Questionworking with CTreeView derived class Pin
Kiran Pinjala23-Aug-06 8:06
Kiran Pinjala23-Aug-06 8:06 
AnswerRe: working with CTreeView derived class Pin
valikac23-Aug-06 9:46
valikac23-Aug-06 9:46 
AnswerRe: working with CTreeView derived class Pin
Hamid_RT24-Aug-06 0:50
Hamid_RT24-Aug-06 0:50 

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.