> > If you have tried that try running "dumpbin /exports" (from the MSVC bin > > directory) of the client.dll file to see if it can dump the exported > > function names. Perhaps the client.dll is corrupt some how. > > I attached the (somewhat sizeable) output to this message. No errors, so I > assume it went okay. I tried deleting the DLL and recreating it, didn't > work. Tried removing the directory, in case that got corrupted somehow, but > that didn't help either. =(
I see that you are exporting the Initialize() function (that's a good thing!). Did you maybe change anything in Initialize() so that it doesn't return 1? Try commenting out the "if (iVersion != " stuff in the Initialize() function to see if version comparison is causing it to fail. Also make sure all the HUD_Init() and HUD_VideoInit() functions return 1 (in fact, you might want to replace the cdll_int.cpp file with the original if you have modified anything in there). Jeffrey "botman" Broome _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

