Thread: Remote Function Calls

  1. #1
    Allways learning cs_student's Avatar
    Join Date
    Aug 2008
    Location
    ~/
    Posts
    39

    Remote Function Calls

    I want to create a simple IRC client. After reading online, I have learned they use something called "Remote Function Calls." However, I'm having a hard time understanding how to implement them. Could someone provide me with a good explanation or a link to one?

    Thank you for your time and effort,

    cs_student

  2. #2
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    Quote Originally Posted by cs_student View Post
    I want to create a simple IRC client. After reading online, I have learned they use something called "Remote Function Calls." However, I'm having a hard time understanding how to implement them. Could someone provide me with a good explanation or a link to one?

    Thank you for your time and effort,

    cs_student
    I don't know what you're reading, but an IRC client doesn't require anything like a "remote function call." It's a line-oriented stream protocol.
    Code:
    //try
    //{
    	if (a) do { f( b); } while(1);
    	else   do { f(!b); } while(1);
    //}

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Accurately detecting function calls
    By Mole42 in forum C Programming
    Replies: 5
    Last Post: 05-17-2009, 04:01 AM
  2. Getting an error with OpenGL: collect2: ld returned 1 exit status
    By Lorgon Jortle in forum C++ Programming
    Replies: 6
    Last Post: 05-08-2009, 08:18 PM
  3. <Gulp>
    By kryptkat in forum Windows Programming
    Replies: 7
    Last Post: 01-14-2006, 01:03 PM
  4. Dikumud
    By maxorator in forum C++ Programming
    Replies: 1
    Last Post: 10-01-2005, 06:39 AM
  5. C++ compilation issues
    By Rupan in forum C++ Programming
    Replies: 1
    Last Post: 08-22-2005, 05:45 AM