Ravi Kansangara
2013-12-07 05:07:31 UTC
Hi,
Thanks for your reply to my query.I am happy u sent me the debugger
tool for
understanding about Sample TSP.But, still i have another problem.I am
not able to change the atsp.c in the Sample TSP from Microsoft and
compile it to generate my customized version of TSP.The makefile
utility from command line works fine by creating a TSP.But,i am not
able to compile from the VC++ Editor.I get about 102 Errors.Anything
has to be included to make me compile the atsp.c fine.I would like u
to tell me on how i proceed to compile and test my TSP.I would like to
customize it for myself.
Hi JavaGuy_blr,Thanks for your reply to my query.I am happy u sent me the debugger
tool for
understanding about Sample TSP.But, still i have another problem.I am
not able to change the atsp.c in the Sample TSP from Microsoft and
compile it to generate my customized version of TSP.The makefile
utility from command line works fine by creating a TSP.But,i am not
able to compile from the VC++ Editor.I get about 102 Errors.Anything
has to be included to make me compile the atsp.c fine.I would like u
to tell me on how i proceed to compile and test my TSP.I would like to
customize it for myself.
- TSP is nothing but simply a .dll (Dynamic Link Library) file.
- That DLL includes TSPI functions body.
- TSPI functions must be exposed (export) to TAPISRV.exe using .def file.
- So Create new Win32 DLL Project in VC++ & Copy atsp files.
- To remove compilation errors, remove some dependencies that you don't need at this stage.
- After you build project successfully, you will get atsp32.dll file.
- Just rename atsp32.dll to atsp32.tsp & you have your own TSP.
- For debugging you can use file or UDP, TCP port.