Skip to content

Commit

Permalink
Fix formatting errors in ijl15.c
Browse files Browse the repository at this point in the history
  • Loading branch information
jchv committed Aug 6, 2024
1 parent c91ec2d commit c8490da
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions src/ijl15.c
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
#include <windows.h>
#include "../third_party/ijl/ijl.h"
#include <windows.h>

const IJLibVersion *__stdcall ijlGetLibVersionWrapper() {
return ijlGetLibVersion();
}
const IJLibVersion *__stdcall ijlGetLibVersionWrapper() { return ijlGetLibVersion(); }

IJLERR __stdcall ijlInitWrapper(JPEG_CORE_PROPERTIES *jcprops) {
return ijlInit(jcprops);
}
IJLERR __stdcall ijlInitWrapper(JPEG_CORE_PROPERTIES *jcprops) { return ijlInit(jcprops); }

IJLERR __stdcall ijlFreeWrapper(JPEG_CORE_PROPERTIES *jcprops) {
return ijlFree(jcprops);
}
IJLERR __stdcall ijlFreeWrapper(JPEG_CORE_PROPERTIES *jcprops) { return ijlFree(jcprops); }

IJLERR __stdcall ijlReadWrapper(JPEG_CORE_PROPERTIES *jcprops, IJLIOTYPE iotype) {
return ijlRead(jcprops, iotype);
Expand All @@ -21,6 +15,4 @@ IJLERR __stdcall ijlWriteWrapper(JPEG_CORE_PROPERTIES *jcprops, IJLIOTYPE iotype
return ijlWrite(jcprops, iotype);
}

const char *__stdcall ijlErrorStrWrapper(IJLERR code) {
return ijlErrorStr(code);
}
const char *__stdcall ijlErrorStrWrapper(IJLERR code) { return ijlErrorStr(code); }

0 comments on commit c8490da

Please sign in to comment.