Search:

Type: Posts; User: cuteblanket

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    6,336

    a look into the functions "GetProcAddress" on...

    a look into the functions "GetProcAddress" on windows or "dlsym" on linux, should give some insight into their usefulness in a real world example.
  2. Replies
    27
    Views
    11,045

    ill try my best to explain it simply while also...

    ill try my best to explain it simply while also being in depth.

    tldr: use a for loop, dont worry about stack overflows.

    your function in assembly & better solution
    I recommend you look a...
  3. Replies
    19
    Views
    18,532

    call ShowWindow, ``` HWND hWnd =...

    call ShowWindow,
    ```
    HWND hWnd = CreateWindowW(L"myWindowClass",L"My Window",WS_EX_OVERLAPPEDWINDOW | WS_VISIBLE,100,100,500,500, NULL,NULL,NULL,NULL);


    ShowWindow(hWnd,...
Results 1 to 3 of 3