Try starting a new DLL project, moving all your files into it, placing the SDK where the files can be #included properly, add the .lib for the SDK, and possibly for LibCTiny as well, and try to adjust the DLL load address. That should be all the important things to do.
Or in terms of errors you'll likely encounter:
1) Compile Errors:
a] Set project type to DLL (so it looks for DllMain instead of main)
b] Find a good place for the SDK headers, so you can #include them
2) Link Errors:
a] Include needed libraries, so all the functions in the SDK headers are found in Outpost2.exe
3) Load performance:
a] Set the load address to an unoccupied memory range so the DLL doesn't need to be relocated when the Windows loader loads it. Check the old project files for MSVC 6.0 or CodeBlocks to find the address used there. (Possibly "Module Address" or something like that).
Perhaps we need a preformatted text tag. :P
trying to get it to work getting this problem
LibCTiny.lib(DLLCRT0.OBJ) : warning LNK4229: invalid directive '/OPT:NOWIN98' encountered; ignored
LINK : fatal error LNK1104: cannot open file 'LIBC.lib'
Build log was saved at "file://c:\Outpost2\Mission_SDK__2008\Outpost2-Mission-SDK\TemplateMission-Hooville\ReleaseMinSize\BuildLog.htm"
OP2Script - 1 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 2 up-to-date, 0 skipped ==========