std::fwide
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <cwchar>
|
||
int fwide( FILE *stream, int mode ); |
||
Se
mode > 0, i tentativi di fare stream wide-oriented. Se mode < 0, i tentativi di fare stream byte-oriented. Se mode==0, interroga solo l'orientamento corrente del flusso.Original:
If
mode > 0, attempts to make stream wide-oriented. If mode < 0, attempts to make stream byte-oriented. If mode==0, only queries the current orientation of the stream.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parametri
| stream | - | puntatore al I / O flusso C di modificare o interrogare
Original: pointer to the C I/O stream to modify or query The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| mode | - | valore intero maggiore di zero per impostare il flusso ampio, minore di zero per impostare il flusso ristretto, o zero per interrogare solo
Original: integer value greater than zero to set the stream wide, less than zero to set the stream narrow, or zero to query only The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valore di ritorno
Un numero intero maggiore di zero se il flusso è ampia orientata dopo questo invito, minore di zero se il flusso è orientato ai byte dopo questa chiamata, e zero se il flusso non ha un orientamento.
Original:
An integer greater than zero if the stream is wide-oriented after this call, less than zero if the stream is byte-oriented after this call, and zero if the stream has no orientation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Vedi anche
apre un file Original: opens a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
C documentation for fwide
| |