-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextractor.h
27 lines (21 loc) · 816 Bytes
/
extractor.h
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
/////////////////////////////////////////////
// //
// Copyright (C) 2019-2019 Julian Uy //
// https://sites.google.com/site/awertyb //
// //
// See details of license at "LICENSE" //
// //
/////////////////////////////////////////////
#pragma once
#include "spi00in.h"
#ifdef __cplusplus
extern "C" {
#endif
extern const char *plugin_info[4];
extern const int header_size;
BOOL IsSupportedEx(const char *data);
int GetPictureInfoEx(size_t data_size, const char *data, SusiePictureInfo *picture_info);
int GetPictureEx(size_t data_size, HANDLE *bitmap_info, HANDLE *bitmap_data, SPI_PROGRESS progress_callback, intptr_t user_data, const char *data);
#ifdef __cplusplus
}
#endif