GetCodeForDllRegisterServer
更新:2007 年 11 月
取得登錄伺服器的正確程式碼。
function GetCodeForDllRegisterServer( nLineStart, nLineEnd );
參數
nLineStart
函式的起始行號 (行號以零開始)。nLineEnd
函式的結束行號 (行號以零開始)。
傳回值
包含登錄伺服端程式碼的字串。
備註
呼叫此成員函式來取得登錄伺服器的正確程式碼:
行號 |
程式碼 |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
GetCodeForDllRegisterServer 會在傳回的每一行加上前置定位鍵 (\t) 和結尾的 "CR-LF" (歸位換行) 字元組 (\r\n)。
範例
// 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"