Skip to content

Commit

Permalink
インデントをスペースx4に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Ojii committed Oct 2, 2022
1 parent f71bc44 commit 16fbc22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/ifheif.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ EXTERN_C int __declspec(dllexport) __stdcall IsSupported(LPSTR filename, DWORD d
data = reinterpret_cast<BYTE*>(dw);
} else {
DWORD bytes;
if(!ReadFile((HANDLE)dw, buf, sizeof(buf), &bytes, NULL)) {
if(!ReadFile((HANDLE)dw, buf, sizeof(buf), &bytes, NULL)) {
return 0;
}
}
SetFilePointer((HANDLE)dw, 0, NULL, FILE_BEGIN);
data = buf;
}
Expand All @@ -37,7 +37,7 @@ EXTERN_C int __declspec(dllexport) __stdcall IsSupported(LPSTR filename, DWORD d
}
if(size <= 8) {
break;
}
}

char box_type[5] = { '\0' };
for(int i = 0; i < 4; i++) {
Expand Down
6 changes: 3 additions & 3 deletions src/ifheif.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#include <windows.h>

static const char* plugin_info[] = {
"00IN",
"HEIF AVIF Reader by Mr-Ojii",
"00IN",
"HEIF AVIF Reader by Mr-Ojii",
"*.heif;*.heic;*.avif",
"HEIF File(*.heif,*.heic);AVIF File(*.avif)"
"HEIF File(*.heif,*.heic);AVIF File(*.avif)"
};

typedef struct {
Expand Down

0 comments on commit 16fbc22

Please sign in to comment.