The Dink Network

Reply to 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 3rd 2006, 09:43 PM
girl.gif
joshriot
Peasant They/Them United States
keep it real 
Dink rocedure print_thing does not take 2 parms in FRANK, offset 735. ();
?)

what the heck does that mean?

im playing around with procedures and they work. sometimes i think. this one isnt even global its local so what is this error mean?

i write it like this

void main( void )
{
whatever(1,2);
int &elf = &return;
}

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

it works i just get this error. it works with doing

void whatever( void )

and

void whatever(&arg1,&arg2)

also i just still get the error so how is it done anyone can do me example?