2017-10-04 12:25:35 +00:00
|
|
|
/*
|
|
|
|
* BinInterop.h
|
|
|
|
*
|
|
|
|
* This file is a part of NSIS.
|
|
|
|
*
|
2019-01-07 14:30:06 +00:00
|
|
|
* Copyright (C) 2017-2019 Anders Kjersem
|
2017-10-04 12:25:35 +00:00
|
|
|
*
|
|
|
|
* Licensed under the zlib/libpng license (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
*
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NSIS_BININTEROP_H
|
|
|
|
#define NSIS_BININTEROP_H
|
|
|
|
|
|
|
|
#include "Platform.h"
|
|
|
|
#include "tchar.h"
|
|
|
|
#include <stdio.h> // FILE*
|
|
|
|
|
|
|
|
FILE* MSTLB_fopen(const TCHAR*filepath, size_t*pResId = 0);
|
|
|
|
bool GetTLBVersion(const TCHAR *filepath, DWORD &high, DWORD &low);
|
|
|
|
|
2017-10-04 23:40:45 +00:00
|
|
|
bool GetDLLVersion(const TCHAR *filepath, DWORD &high, DWORD &low);
|
|
|
|
|
2017-10-04 12:25:35 +00:00
|
|
|
#endif //~ NSIS_BININTEROP_H
|