I'm practing with Akrip32.dll for a time now and I can get the DLL version as DWORD. The Version is divided as HIWORD and LOWORD
Can anyone help me interpret these Buzzwords? I have no Idea of what they are

Recommended Answers

All 5 Replies

Ok Cool Links!
Another question I have is how to retrieve HIWORD and LOWORD if Im given a variable
Lets say I have

DWORD testVariable;
// How do I get HIWORD and LOWORD???

Just simply use the macros

#include <iostream>
#include <windows.h>
using namespace std;

int main()
{
    DWORD dwWord = 1234567890;
    long lWord = LOWORD(dwWord);
    cout << lWord << "\n";
    cin.get();
    return 0;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.