blob: be3e95c1868973ec8c908c3d5657f8882cdbe909 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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>
|