Added POSIX TLB reader functions
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6914 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
a51d89712c
commit
5bb70ce76b
2 changed files with 439 additions and 0 deletions
28
Source/BinInterop.h
Normal file
28
Source/BinInterop.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* BinInterop.h
|
||||
*
|
||||
* This file is a part of NSIS.
|
||||
*
|
||||
* Copyright (C) 2017 Anders Kjersem
|
||||
*
|
||||
* 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);
|
||||
|
||||
#endif //~ NSIS_BININTEROP_H
|
Loading…
Add table
Add a link
Reference in a new issue