

#include <nitro/wfs.h>void WFS_GetClientReadProgress(WFSClientContext *context, int *current, int *total);| context | WFSClientContext構造体のポインタ |
| current | 受信済みパケット数を取得するint変数へのポインタ |
| total | 受信予定のパケット総数を取得するint変数へのポインタ |
なし。
WFS_RequestClientRead( )で発行したROMイメージ読み込みリクエストの進捗状況を取得します。
進捗状況は (受信済みパケット数) / (受信予定のパケット総数) の形式で取得することが出来ます。
2007/06/06 初版