Hi,
I've been wondering, I have some example code that i'm looking at that seems to use HINSTANCE and these includes
|
Source code
|
1
2
3
4
5
|
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <iostream.h>
#include <fstream.h>
#include <string.h>
|
here's the main issue so far:
I'm having a hard time figureing out what Qt's version(if any) of HINSTACE would be. for example, the code says:
|
Source code
|
1
|
HINSTANCE libhandle=LoadLibrary("c:\\program files\\steinberg\\vstplugins\\muon\\cm101.dll");
|
now i know i can use QLibrary() to load .dll files from reading assistant. But will i be using it in the proper context if i don't find Qt's "equivalent" function?
i have "C++ GUI Programming with Qt 4" and it has a few pages on Qt and the Win32 Api, including a list of Windows functions and their Qt equivalents, but i don't see HINSTANCE here(there were only 7 different entries).
Can anyone help me out with this please?