| 22 |
bipIsLogFile, // : Boolean // ログ存在フラグ |
bipIsLogFile, // : Boolean // ログ存在フラグ |
| 23 |
bipUnRead, // : Integer // スレッド未読数 |
bipUnRead, // : Integer // スレッド未読数 |
| 24 |
bipURL, // : string // 板をブラウザで表示する際の URL |
bipURL, // : string // 板をブラウザで表示する際の URL |
| 25 |
bipFilePath // : string // この板が保存されているパス |
bipFilePath, // : string // この板が保存されているパス |
| 26 |
|
bipIs2ch // : Boolean //ホストが2chかどうか |
| 27 |
); |
); |
| 28 |
|
|
| 29 |
// ************************************************************************* |
// ************************************************************************* |
| 119 |
Result := DWORD( CreateResultString( boardItem.URL ) ); |
Result := DWORD( CreateResultString( boardItem.URL ) ); |
| 120 |
bipFilePath: // このスレが保存されているパス |
bipFilePath: // このスレが保存されているパス |
| 121 |
Result := DWORD( CreateResultString( boardItem.FilePath ) ); |
Result := DWORD( CreateResultString( boardItem.FilePath ) ); |
| 122 |
|
bipIs2ch: |
| 123 |
|
Result := DWORD( boardItem.Is2ch ); |
| 124 |
else |
else |
| 125 |
Result := 0; |
Result := 0; |
| 126 |
end; |
end; |
| 149 |
bipRound: // : Boolean // 巡回フラグ |
bipRound: // : Boolean // 巡回フラグ |
| 150 |
boardItem.Round := Boolean( param ); |
boardItem.Round := Boolean( param ); |
| 151 |
bipRoundName: // : string // 巡回名 |
bipRoundName: // : string // 巡回名 |
| 152 |
boardItem.RoundName := string( PChar( param ) ); |
//boardItem.RoundName := string( PChar( param ) ); |
| 153 |
|
boardItem.RoundName := PChar( param ); |
| 154 |
bipIsLogFile: // : Boolean // ログ存在フラグ |
bipIsLogFile: // : Boolean // ログ存在フラグ |
| 155 |
boardItem.IsLogFile := Boolean( param ); |
boardItem.IsLogFile := Boolean( param ); |
| 156 |
bipUnRead: // : Integer // スレッド未読数 |
bipUnRead: // : Integer // スレッド未読数 |
| 159 |
boardItem.URL := string( PChar( param ) ); |
boardItem.URL := string( PChar( param ) ); |
| 160 |
bipFilePath: // : string // このスレが保存されているパス |
bipFilePath: // : string // このスレが保存されているパス |
| 161 |
boardItem.FilePath := string( PChar( param ) ); |
boardItem.FilePath := string( PChar( param ) ); |
| 162 |
|
bipIs2ch: |
| 163 |
|
boardItem.Is2ch := Boolean( param ); |
| 164 |
end; |
end; |
| 165 |
|
|
| 166 |
end; |
end; |