[hlcoders] ERROR: No EXPORT

2002-11-19 Thread Mark Gornall
Can't find address: 0f8b2e4b ERROR: No EXPORT: mynewclass:Think (0f8b2e4b) Anyone know: a.) What causes these errors? b.) How do you fix them? c.) Are they serious? (since they don't seem to break anything but I have to rule them out in case they are affecting something) Thanks, Mark.

Re: [hlcoders] ERROR: No EXPORT

2002-11-19 Thread polymorph
At 09:58 AM 11/19/02 +, you wrote: Can't find address: 0f8b2e4b ERROR: No EXPORT: mynewclass:Think (0f8b2e4b) Anyone know: a.) What causes these errors? b.) How do you fix them? c.) Are they serious? (since they don't seem to break anything but I have to rule them out in case they are

RE: [hlcoders] ERROR: No EXPORT

2002-11-19 Thread Mark Gornall
1.) A missing EXPORT macro in the functions declaration.. so it should look like this in your class declaration: void EXPORT Think (void); I tried shoving EXPORT on front of everything in sight, the error still shows up. Mark. __

Re: [hlcoders] ERROR: No EXPORT

2002-11-19 Thread Sniper
Should be applied to touch functions also, as I recall. void EXPORT Touch( CBaseEntity *pOther ); -Sniper - Original Message - From: Persuter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 19, 2002 11:12 AM Subject: RE: [hlcoders] ERROR: No EXPORT Paste the definition

RE: [hlcoders] ERROR: No EXPORT

2002-11-19 Thread Persuter
Paste the definition of your class and the definition of the function (if they're long, just cut out everything except where it actually says void Think( void ) in both cases). Persuter At 12:51 PM 11/19/2002 +, you wrote: 1.) A missing EXPORT macro in the functions declaration.. so it