dll

'Error!: could not find driver' after installing php_[pdo_]mssql.dll on WampServer

戏子无情 提交于 2019-12-25 04:24:13
问题 Similar questions seem to be all over the internet, but so far nothing has helped. I'm currently running WampServer with Apache 2.4.4 and PHP 5.4.12 on Windows Server 2008 R2. According to the PHP documentation the drivers necessary to connect to an MSSQL server ship with the distribution; they do not. Neither php_mssql.dll (which the documentation claims is no longer necessary for PHP5.4, but which is still referenced in php.ini . Who knows) nor php_pdo_mssql.dll are present in the

AccessViolation when using C++ DLL from Delphi

こ雲淡風輕ζ 提交于 2019-12-25 04:07:17
问题 I have a weird problem trying to use a DLL written in C++ from a Delphi (Turbo Delphi 2006) program. When I run the Delphi program (see below) from the command line, everything works fine. Also, when I run it from the Delphi environment without debugging (CTRL+SHIFT+F9), everything is fine. However, when running it with debugging (F9), I get the following error: Project Z:\test.exe faulted with message: 'access violation at 0x00403fdf: read of address 0x00a14e74'. Process stopped. Use Step or

Retrive list of EntryPoints in a external C++ lib?

夙愿已清 提交于 2019-12-25 03:57:09
问题 I've found the Software DLL Export Viewer which can retrieve the name of the exported functions from a dll library file: I would like to know how I can start trying to mimic the same feature of the function-name retrieval in VB.NET or C# code (I don't need to retrieve the adreesses), for a C++ library. The C++ dll which I would like to test is MediaInfo Anyone can guide me? 回答1: The file format of .exe and .dll in modern windows are Portable Executable (most common PE or PE32, there is an

Python-Magic ; Unable to find libmagic [duplicate]

扶醉桌前 提交于 2019-12-25 03:55:10
问题 This question already has answers here : Python-magic installation error - ImportError: failed to find libmagic (3 answers) Closed 5 years ago . I've downloaded and installed python-magic using "pip install python-magic". Source: https://github.com/ahupp/python-magic It downloaded and installed perfectly fine. I've also copied the 3 files (cygmagic-1.dll, cygwin1.dll, and cygz.dll) from cygwin installation into C:\Windows\System32. Then, I also downloaded magic1.dll and placed it in System32

Error: “This application failed to start because libufun.dll was not found.”

心不动则不痛 提交于 2019-12-25 03:53:33
问题 OS: Windows XP IDE: Visual Studio 2005 Language: C/C++ Coding for: Unigraphics NX (which is a type of CAD software), specifically an external automation in Open C (but this may not be important) I'm trying to code an external program for NXOpen - which, for those unfamiliar with it, means it runs on Windows, instead of within NX (which would be an internal program). I decided to comment out all the interesting stuff and just test it using some printf statements to make sure that everything

Couldn't load library from loader

陌路散爱 提交于 2019-12-25 03:42:48
问题 I have a problem loading some .dll libraries through my android app, in fact there is tons of questions about this issue but not any one of them solves my problem, the following is how I'm trying to implement them: public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); System.loadLibrary("NetSDKDLL"); // this is where I'm getting the Exception simpleDLL INSTANCE =

Couldn't load library from loader

佐手、 提交于 2019-12-25 03:42:46
问题 I have a problem loading some .dll libraries through my android app, in fact there is tons of questions about this issue but not any one of them solves my problem, the following is how I'm trying to implement them: public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); System.loadLibrary("NetSDKDLL"); // this is where I'm getting the Exception simpleDLL INSTANCE =

Is it possible to load a 64-bit dll into a 32-bit process?

≡放荡痞女 提交于 2019-12-25 03:37:12
问题 Is it possible to load a 64-bit dll into a 32-bit process ? Generally speaking, I know it can not happen. Yet, maybe there are some exceptions ? 回答1: No, and neither a 64-bit process can load a 32-bit DLL. If you're on a 64 bit OS, you can load the DLL in a 64-bit process and have it communicate with your 32-bit process through IPC. If you're on a 32 bit OS, you're out of luck. 回答2: But new computer bought today at least have 4G ram. We cannot prevent using 64-bit OS to avoid problem. We must

JNA passing String by reference to dll but non return

瘦欲@ 提交于 2019-12-25 03:32:12
问题 Hi I have a problem with java and dll. I need to pass string value to dll by reference but, It's not successful. public short ReadData(int block_id, int offset, int data_size,StringByReference dataBuf, IntByReference err_code); The problem is StringByReference dataBuf , I try many way to find solution but it doesn't work. The call function is: ReadData(0, 4, 13, ??? , status); Cause it Had no .dll document. function `public static short Read_Data(int card_type, int block_id, int offset, int

Reference native c++ dll in UWP project

纵然是瞬间 提交于 2019-12-25 03:26:40
问题 I have a c++ dll that I want to utilize in the UWP project that I am working on. I need some assistant on how to achieve that. 回答1: C++ doesn't have a concept of "referencing DLLs". All you need to do to use them is to make sure they're copied next to your executable when you build your app. If you're using Visual Studio C# project (.csproj), add it to it as "Content" type: <ItemGroup Condition="'$(Platform)' == 'x86'"> <Content Include="$(ProjectDir)MyDLL\x86\MyDLL.dll">