The Dink Network

Reply to Re: procedure thing

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
September 4th 2006, 12:07 AM
custom_king.png
redink1
King He/Him United States bloop
A mother ducking wizard 
That debug statement doesn't really mean anything... Dink'll spit that out for every custom procedure.

This procedure doesn't work because you are not allowed to modify the &arg# pseudo variables. Try this procedure:

void whatever()
{
int &temp = &arg1;
&temp += &arg2;
return(&temp);
}