This page was last modified 14:35, 15 May 2007.
SymScan - Visual Studio.NET Integration
From Forum Nokia Wiki
Contents |
Introduction
SymScan is an official and very useful tool from Symbian C++ Developers. It's the improved successor of LeaveScan and can scan your own source code files, to find out possible problems related to using the correct naming conventions and the cleanup stack. In detail, it helps against the following:
- Deprecated literal macro (“_L()”): Instead, you should use the _LIT()-macro, as it's more efficient.
- Correct usage of the Cleanup: stackAre objects that you create for automatic variables correctly put on the cleanup-stack as well as removed and destroyed again?
- Opening and Closing of 'R' classes: R-Classes are connections to servers (file server, ...)
- Highlighting functions marked as non-leaving which can leave: In case you forgot to add the “L”-prefix to a function name of a method that can cause a leave.
- Correct use of descriptors in function call: Is the usage of descriptors as parameters for functions correctly executed?
Installation
Download the tool from the URL below and install it. It will automatically place itself in the following directory: C:\Program Files\Common Files\Symbian\tools“
Visual Studio.NET Intergration
To be able to check a file directly from VS.net, you can create an individual menu command. This can be done as follows:
Tools -> External Tools -> Add
Add the following information:
- Title: SymScan
- Command: C:\Program Files\Common Files\Symbian\tools\SymScan.exe
- Arguments: $(ItemPath)
- Activate Use Output Window
Executing
When your own .cpp file is open and active, execute the tool through Tools -> SymScan. The program will check the currently open file and write the results to the output window.
Also see
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| command error makmake | Ali3nSt0rm | Symbian Tools & SDKs | 4 | 2005-01-09 17:37 |
| Where is "SDK for 2nd Edition, FP 1" | sam_code | Symbian | 7 | 2006-08-16 10:21 |
| visual c++ stuck in infinite loop (SDK) | deloford | Symbian Tools & SDKs | 1 | 2003-03-06 09:26 |
| Build example in MS Visual 6.0 Introductory edition | kollar | Symbian Tools & SDKs | 2 | 2003-03-06 09:33 |
| UIQ-project | chrishawaii | General Symbian C++ | 7 | 2006-07-04 12:31 |
