Click here to Skip to main content
15,897,273 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Pointer to structure Pin
Vancouver4-Jan-07 14:00
Vancouver4-Jan-07 14:00 
GeneralRe: Pointer to structure Pin
Christian Graus4-Jan-07 14:29
protectorChristian Graus4-Jan-07 14:29 
AnswerRe: Pointer to structure Pin
Mark Salsbery4-Jan-07 12:57
Mark Salsbery4-Jan-07 12:57 
GeneralRe: Pointer to structure Pin
Vancouver4-Jan-07 13:08
Vancouver4-Jan-07 13:08 
GeneralRe: Pointer to structure Pin
James R. Twine4-Jan-07 13:17
James R. Twine4-Jan-07 13:17 
AnswerRe: Pointer to structure Pin
prasad_som4-Jan-07 17:06
prasad_som4-Jan-07 17:06 
AnswerRe: Pointer to structure Pin
Vancouver4-Jan-07 18:48
Vancouver4-Jan-07 18:48 
GeneralRe: Pointer to structure Pin
Joe Woodbury4-Jan-07 18:53
professionalJoe Woodbury4-Jan-07 18:53 
void main()
{
struct SampleStr1; // add this before the declaration of SampleStr2
struct SampleStr2
{
char Anything;
SampleStr2 *pNextStr;
SampleStr1 *pSStr1;
};

struct SampleStr1
{
char Anychar;
SampleStr2 *pSStr2;
};

return;
};


Anyone who thinks he has a better idea of what's good for people than people do is a swine.
- P.J. O'Rourke

GeneralRe: Pointer to structure Pin
Vancouver4-Jan-07 19:45
Vancouver4-Jan-07 19:45 
GeneralRe: Pointer to structure Pin
David Crow5-Jan-07 3:00
David Crow5-Jan-07 3:00 
GeneralRe: Pointer to structure Pin
Vancouver5-Jan-07 4:41
Vancouver5-Jan-07 4:41 
GeneralRe: Pointer to structure Pin
prasad_som4-Jan-07 19:11
prasad_som4-Jan-07 19:11 
QuestionProblems with Sleep() in thread Pin
acerunner3164-Jan-07 11:42
acerunner3164-Jan-07 11:42 
AnswerRe: Problems with Sleep() in thread Pin
Stephen Hewitt4-Jan-07 12:00
Stephen Hewitt4-Jan-07 12:00 
GeneralRe: Problems with Sleep() in thread Pin
acerunner3164-Jan-07 12:09
acerunner3164-Jan-07 12:09 
GeneralRe: Problems with Sleep() in thread Pin
Stephen Hewitt4-Jan-07 12:19
Stephen Hewitt4-Jan-07 12:19 
GeneralRe: Problems with Sleep() in thread Pin
acerunner3164-Jan-07 14:09
acerunner3164-Jan-07 14:09 
GeneralRe: Problems with Sleep() in thread Pin
Stephen Hewitt4-Jan-07 14:13
Stephen Hewitt4-Jan-07 14:13 
GeneralRe: Problems with Sleep() in thread Pin
acerunner3164-Jan-07 14:18
acerunner3164-Jan-07 14:18 
GeneralRe: Problems with Sleep() in thread Pin
Stephen Hewitt4-Jan-07 14:26
Stephen Hewitt4-Jan-07 14:26 
GeneralRe: Problems with Sleep() in thread Pin
acerunner3164-Jan-07 14:43
acerunner3164-Jan-07 14:43 
GeneralRe: Problems with Sleep() in thread Pin
Stephen Hewitt4-Jan-07 14:58
Stephen Hewitt4-Jan-07 14:58 
GeneralRe: Problems with Sleep() in thread Pin
Chris Losinger4-Jan-07 12:21
professionalChris Losinger4-Jan-07 12:21 
GeneralRe: Problems with Sleep() in thread Pin
Jörgen Sigvardsson4-Jan-07 14:09
Jörgen Sigvardsson4-Jan-07 14:09 
GeneralRe: Problems with Sleep() in thread Pin
Chris Losinger4-Jan-07 14:28
professionalChris Losinger4-Jan-07 14:28 

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.