diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:36:08 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:36:08 +0100 |
commit | 39f2114f9797eb51994966c6bb8ff1814c9a4da8 (patch) | |
tree | 66dbd9c921f56e440f8816ed29ac23682a1ac4ef /files/fr/plugins/guide | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.gz translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.bz2 translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.zip |
unslug fr: move
Diffstat (limited to 'files/fr/plugins/guide')
-rw-r--r-- | files/fr/plugins/guide/constants/index.html | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/files/fr/plugins/guide/constants/index.html b/files/fr/plugins/guide/constants/index.html new file mode 100644 index 0000000000..e7754f7e72 --- /dev/null +++ b/files/fr/plugins/guide/constants/index.html @@ -0,0 +1,92 @@ +--- +title: Constantes +slug: NPAPI/Constantes +tags: + - Code + - Erreur + - Plugin +translation_of: Plugins/Guide/Constants +translation_of_original: NPAPI/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> |