GetCodeForDllRegisterServer
Gets the appropriate code for registering a server.
function GetCodeForDllRegisterServer(
nLineStart,
nLineEnd
);
Parameters
nLineStart
The zero-based line number for the start of the function.nLineEnd
The zero-based line number for the end of the function.
Return Value
A string containing the code for registering the server
Remarks
Call this member function to retrieve the appropriate code for registering a server:
Line number |
Code |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
For each of the lines returned, GetCodeForDllRegisterServer adds a leading tab (\t) and a trailing "CR-LF" (carriage return - linefeed) character pair (\r\n).
Example
// Get the lines numbered 2 and 3 above
GetCodeForDllRegisterServer(2, 3)
// returns the following string
// "\tHRESULT hRes = _AtlModule.RegisterServer(TRUE);\r\n\tif (hRes != S_OK)\r\n"
See Also
Tasks
Concepts
Customizing C++ Wizards with Common JScript Functions