diff options
| author | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-08-10 08:12:10 +0000 |
|---|---|---|
| committer | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-08-10 08:12:10 +0000 |
| commit | 676f8f189f338ababaf67fe652c708e82770d524 (patch) | |
| tree | 6744b58e9faf0c9538c7c217bebd2b68c9b81775 /libopenjpeg/openjpeg.c | |
| parent | df44837b0731ab7c231b8b3159c5f0600ee2f5e8 (diff) | |
removed unused parameters warnings with the solution proposed by myself and Bob Friesenhahn
Diffstat (limited to 'libopenjpeg/openjpeg.c')
| -rw-r--r-- | libopenjpeg/openjpeg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libopenjpeg/openjpeg.c b/libopenjpeg/openjpeg.c index 790f2eea..00a910ec 100644 --- a/libopenjpeg/openjpeg.c +++ b/libopenjpeg/openjpeg.c @@ -36,6 +36,10 @@ #ifndef OPJ_STATIC BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { + + OPJ_ARG_NOT_USED(lpReserved); + OPJ_ARG_NOT_USED(hModule); + switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH : break; |
