Skip to content

Commit

Permalink
update bink2 exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirteenAG committed May 22, 2024
1 parent 42dc92a commit d45ba82
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/dllmain.h
Original file line number Diff line number Diff line change
Expand Up @@ -1664,6 +1664,7 @@ struct bink2w64_dll
FARPROC BinkControlBackgroundIO;
FARPROC BinkCopyToBuffer;
FARPROC BinkCopyToBufferRect;
FARPROC BinkCurrentSubtitle;
FARPROC BinkDoFrame;
FARPROC BinkDoFrameAsync;
FARPROC BinkDoFrameAsyncMulti;
Expand All @@ -1678,12 +1679,14 @@ struct bink2w64_dll
FARPROC BinkGetPlatformInfo;
FARPROC BinkGetRealtime;
FARPROC BinkGetRects;
FARPROC BinkGetSubtitleByIndex;
FARPROC BinkGetSummary;
FARPROC BinkGetTrackData;
FARPROC BinkGetTrackID;
FARPROC BinkGetTrackMaxSize;
FARPROC BinkGetTrackType;
FARPROC BinkGoto;
FARPROC BinkLoadSubtitles;
FARPROC BinkLogoAddress;
FARPROC BinkNextFrame;
FARPROC BinkOpen;
Expand Down Expand Up @@ -1746,6 +1749,7 @@ struct bink2w64_dll
BinkControlBackgroundIO = GetProcAddress(dll, "BinkControlBackgroundIO");
BinkCopyToBuffer = GetProcAddress(dll, "BinkCopyToBuffer");
BinkCopyToBufferRect = GetProcAddress(dll, "BinkCopyToBufferRect");
BinkCurrentSubtitle = GetProcAddress(dll, "BinkCurrentSubtitle");
BinkDoFrame = GetProcAddress(dll, "BinkDoFrame");
BinkDoFrameAsync = GetProcAddress(dll, "BinkDoFrameAsync");
BinkDoFrameAsyncMulti = GetProcAddress(dll, "BinkDoFrameAsyncMulti");
Expand All @@ -1760,12 +1764,14 @@ struct bink2w64_dll
BinkGetPlatformInfo = GetProcAddress(dll, "BinkGetPlatformInfo");
BinkGetRealtime = GetProcAddress(dll, "BinkGetRealtime");
BinkGetRects = GetProcAddress(dll, "BinkGetRects");
BinkGetSubtitleByIndex = GetProcAddress(dll, "BinkGetSubtitleByIndex");
BinkGetSummary = GetProcAddress(dll, "BinkGetSummary");
BinkGetTrackData = GetProcAddress(dll, "BinkGetTrackData");
BinkGetTrackID = GetProcAddress(dll, "BinkGetTrackID");
BinkGetTrackMaxSize = GetProcAddress(dll, "BinkGetTrackMaxSize");
BinkGetTrackType = GetProcAddress(dll, "BinkGetTrackType");
BinkGoto = GetProcAddress(dll, "BinkGoto");
BinkLoadSubtitles = GetProcAddress(dll, "BinkLoadSubtitles");
BinkLogoAddress = GetProcAddress(dll, "BinkLogoAddress");
BinkNextFrame = GetProcAddress(dll, "BinkNextFrame");
BinkOpen = GetProcAddress(dll, "BinkOpen");
Expand Down Expand Up @@ -3949,6 +3955,7 @@ void _BinkCloseTrack() { bink2w64.BinkCloseTrack(); }
void _BinkControlBackgroundIO() { bink2w64.BinkControlBackgroundIO(); }
void _BinkCopyToBuffer() { bink2w64.BinkCopyToBuffer(); }
void _BinkCopyToBufferRect() { bink2w64.BinkCopyToBufferRect(); }
void _BinkCurrentSubtitle() { bink2w64.BinkCurrentSubtitle(); }
void _BinkDoFrame() { bink2w64.BinkDoFrame(); }
void _BinkDoFrameAsync() { bink2w64.BinkDoFrameAsync(); }
void _BinkDoFrameAsyncMulti() { bink2w64.BinkDoFrameAsyncMulti(); }
Expand All @@ -3963,12 +3970,14 @@ void _BinkGetKeyFrame() { bink2w64.BinkGetKeyFrame(); }
void _BinkGetPlatformInfo() { bink2w64.BinkGetPlatformInfo(); }
void _BinkGetRealtime() { bink2w64.BinkGetRealtime(); }
void _BinkGetRects() { bink2w64.BinkGetRects(); }
void _BinkGetSubtitleByIndex() { bink2w64.BinkGetSubtitleByIndex(); }
void _BinkGetSummary() { bink2w64.BinkGetSummary(); }
void _BinkGetTrackData() { bink2w64.BinkGetTrackData(); }
void _BinkGetTrackID() { bink2w64.BinkGetTrackID(); }
void _BinkGetTrackMaxSize() { bink2w64.BinkGetTrackMaxSize(); }
void _BinkGetTrackType() { bink2w64.BinkGetTrackType(); }
void _BinkGoto() { bink2w64.BinkGoto(); }
void _BinkLoadSubtitles() { bink2w64.BinkLoadSubtitles(); }
void _BinkLogoAddress() { bink2w64.BinkLogoAddress(); }
void _BinkNextFrame() { bink2w64.BinkNextFrame(); }
void _BinkOpen() { bink2w64.BinkOpen(); }
Expand Down
3 changes: 3 additions & 0 deletions source/x64.def
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,7 @@ BinkCloseTrack = _BinkCloseTrack
BinkControlBackgroundIO = _BinkControlBackgroundIO
BinkCopyToBuffer = _BinkCopyToBuffer
BinkCopyToBufferRect = _BinkCopyToBufferRect
BinkCurrentSubtitle = _BinkCurrentSubtitle
BinkDoFrame = _BinkDoFrame
BinkDoFrameAsync = _BinkDoFrameAsync
BinkDoFrameAsyncMulti = _BinkDoFrameAsyncMulti
Expand All @@ -496,12 +497,14 @@ BinkGetKeyFrame = _BinkGetKeyFrame
BinkGetPlatformInfo = _BinkGetPlatformInfo
BinkGetRealtime = _BinkGetRealtime
BinkGetRects = _BinkGetRects
BinkGetSubtitleByIndex = _BinkGetSubtitleByIndex
BinkGetSummary = _BinkGetSummary
BinkGetTrackData = _BinkGetTrackData
BinkGetTrackID = _BinkGetTrackID
BinkGetTrackMaxSize = _BinkGetTrackMaxSize
BinkGetTrackType = _BinkGetTrackType
BinkGoto = _BinkGoto
BinkLoadSubtitles = _BinkLoadSubtitles
BinkLogoAddress = _BinkLogoAddress
BinkNextFrame = _BinkNextFrame
BinkOpen = _BinkOpen
Expand Down

0 comments on commit d45ba82

Please sign in to comment.