diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/npapi | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/npapi')
-rw-r--r-- | files/fr/npapi/constantes/index.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/files/fr/npapi/constantes/index.html b/files/fr/npapi/constantes/index.html new file mode 100644 index 0000000000..be3e95c186 --- /dev/null +++ b/files/fr/npapi/constantes/index.html @@ -0,0 +1,91 @@ +--- +title: Constantes +slug: NPAPI/Constantes +tags: + - Code + - Erreur + - Plugin +translation_of: Plugins/Guide/Constants +--- +<p>Cette section est une référence au définitions utilisées par l'API Plug-in. Toutes les définitions proviennent de npapi.h.</p> +<h3 id="Error_Codes" name="Error_Codes">Codes Erreur</h3> +<table class="standard-table"> + <tbody> + <tr> + <th>Code</th> + <th>Valeur</th> + <th>Description</th> + </tr> + <tr> + <td><strong>NPERR_NO_ERROR </strong></td> + <td>0</td> + <td>Aucune erreur n'est survenue</td> + </tr> + <tr> + <td><strong>NPERR_GENERIC_ERROR </strong></td> + <td>1</td> + <td>Une erreur sans code attribué est survenue</td> + </tr> + <tr> + <td><strong>NPERR_INVALID_INSTANCE_ERROR </strong></td> + <td>2</td> + <td>L'instance transmise au plugin est invalide</td> + </tr> + <tr> + <td><strong>NPERR_INVALID_FUNCTABLE_ERROR </strong></td> + <td>3</td> + <td>Table de fonctions invalide</td> + </tr> + <tr> + <td><strong>NPERR_MODULE_LOAD_FAILED_ERROR</strong></td> + <td>4</td> + <td>Le chargement du plugin a échoué</td> + </tr> + <tr> + <td><strong>NPERR_OUT_OF_MEMORY_ERROR</strong></td> + <td>5</td> + <td>L'allocation de mémoire a échoué</td> + </tr> + <tr> + <td><strong>NPERR_INVALID_PLUGIN_ERROR </strong></td> + <td>6</td> + <td>Plugin manquant ou invalide</td> + </tr> + <tr> + <td><strong>NPERR_INVALID_PLUGIN_DIR_ERROR</strong></td> + <td>7</td> + <td>Répertoire du plugin manquant ou invalide</td> + </tr> + <tr> + <td><strong>NPERR_INCOMPATIBLE_VERSION_ERROR</strong></td> + <td>8</td> + <td>les versions du plugin et de Communicator ne correspondent pas</td> + </tr> + <tr> + <td><strong>NPERR_INVALID_PARAM </strong></td> + <td>9</td> + <td>Paramètre manquant ou invalide</td> + </tr> + <tr> + <td><strong>NPERR_INVALID_URL</strong></td> + <td>10</td> + <td>URL manquante ou invalide</td> + </tr> + <tr> + <td><strong>NPERR_FILE_NOT_FOUND</strong></td> + <td>11</td> + <td>Fichier manquant ou invalide</td> + </tr> + <tr> + <td><strong>NPERR_NO_DATA</strong></td> + <td>12</td> + <td>Le flux ne contient pas de données</td> + </tr> + <tr> + <td><strong>NPERR_STREAM_NOT_SEEKABLE </strong></td> + <td>13</td> + <td>Flux trouvable attendu. (trad à vérifier : Seekable stream expected)</td> + </tr> + </tbody> +</table> +<p> </p> |