Search:

Type: Posts; User: n00b3

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    2,764

    Hello, I am using code::blocks with mingw32...

    Hello,

    I am using code::blocks with mingw32 gcc 3.4.5

    I do not need a dll entry point to duplicate the error.

    Also, I have replicated this with non-dll implementation.
  2. Replies
    1
    Views
    2,764

    DLL Global Object Constructor String Error

    DLL Global Object Constructor String Error

    Hello,

    This one has really got my head spinning. I cannot figure it out.

    I have a c++ console application that loads a dll.
    In that dll there...
  3. Thanks to both of you [btw: both of your...

    Thanks to both of you [btw: both of your signatures are great]

    Fish Salesman: The new thread idea with delayed execution allowed the original hookprocedure to return, the menu to be created, and...
  4. Let me make sure I understand what you are...

    Let me make sure I understand what you are saying.

    1) within the hook, when the activation message is sent create a new thread (call it worker thread).
    2) have the worker thread wait a moment...
  5. Hooked Procedure Early Return In/External Trigger

    Hooked Procedure Early Return In/External Trigger

    Hello,

    I've hooked into an application succesfully using WH_CALLWNDPROCRET or WH_CALLWNDPROC both give the same issue detailed below.

    In the...
  6. Replies
    3
    Views
    1,566

    GUI Type Scope and Instantiation

    GUI Type Scope and Instantiation

    Hello,

    Sorry if this is a basic basic question.

    I am familiar with doing console projects, but I am trying to do a gui project and the rules just don't seem...
  7. Replies
    5
    Views
    21,727

    You are correct - doh! Thanks for the rapid...

    You are correct - doh!

    Thanks for the rapid solution!



    HANDLE clip;

    if (OpenClipboard(NULL)) {
    clip = GetClipboardData(CF_TEXT);
  8. Replies
    5
    Views
    21,727

    Get Clipboard Text as String

    Hello,

    I am writing a c++ program for windows using the API. My program needs to be able to get some text from the clipboard, import it to the program's scope as a string, and do work on the...
  9. Replies
    3
    Views
    1,528

    Yes, indeed it is an atom; namely, an integer...

    Yes, indeed it is an atom; namely, an integer atom.

    I changed the callback procedure to the following:


    BOOL CALLBACK PropEnumProcEx(HWND hwnd, LPTSTR lpszString, HANDLE hData, ULONG_PTR...
  10. Replies
    3
    Views
    1,528

    EnumPropsEx Error

    Hello,

    I am trying to get the properties of a Microsoft's Notepad.exe window. I have an instance of this application running when I execute the code below.



    #include <iostream>
    #include...
Results 1 to 10 of 10