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
Stefano Mtangoo 455 Senior Poster
Recommended Answers
Jump to PostJust 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; }
All 5 Replies
twomers 408 Posting Virtuoso
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Stefano Mtangoo 455 Senior Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Stefano Mtangoo 455 Senior Poster
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.