| 31 |
tipDownloadHost, // : string // 今のホストと違う場合のホスト |
tipDownloadHost, // : string // 今のホストと違う場合のホスト |
| 32 |
tipAgeSage, // : TThreadAgeSage // アイテムの上げ下げ |
tipAgeSage, // : TThreadAgeSage // アイテムの上げ下げ |
| 33 |
tipURL, // : string // スレッドをブラウザで表示する際の URL |
tipURL, // : string // スレッドをブラウザで表示する際の URL |
| 34 |
tipFilePath // : string // このスレが保存されているパス |
tipFilePath, // : string // このスレが保存されているパス |
| 35 |
|
tipJumpAddress // : Integer // JUMP先レス番号 |
| 36 |
); |
); |
| 37 |
|
|
| 38 |
// ************************************************************************* |
// ************************************************************************* |
| 169 |
Result := DWORD( CreateResultString( threadItem.URL ) ); |
Result := DWORD( CreateResultString( threadItem.URL ) ); |
| 170 |
tipFilePath: // このスレが保存されているパス |
tipFilePath: // このスレが保存されているパス |
| 171 |
Result := DWORD( CreateResultString( threadItem.FilePath ) ); |
Result := DWORD( CreateResultString( threadItem.FilePath ) ); |
| 172 |
|
tipJumpAddress: |
| 173 |
|
Result := threadItem.JumpAddress; |
| 174 |
else |
else |
| 175 |
Result := 0; |
Result := 0; |
| 176 |
end; |
end; |
| 231 |
threadItem.URL := string( PChar( param ) ); |
threadItem.URL := string( PChar( param ) ); |
| 232 |
//tipFilePath: // : string // このスレが保存されているパス |
//tipFilePath: // : string // このスレが保存されているパス |
| 233 |
// threadItem.FilePath := string( PChar( param ) ); |
// threadItem.FilePath := string( PChar( param ) ); |
| 234 |
|
tipJumpAddress: |
| 235 |
|
threadItem.JumpAddress := param; |
| 236 |
end; |
end; |
| 237 |
|
|
| 238 |
end; |
end; |