Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3438680
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:13:01+00:00 2026-05-18T08:13:01+00:00

I have a Visual Studio solution which consists of a DLL and an EXE.

  • 0

I have a Visual Studio solution which consists of a DLL and an EXE. My program sets a global WH_CALLWNDPROC hook. The hook procedure is defined by the DLL. I have verified that the DLL gets properly injected into all the processes I am interested in. The DLL exports a few procedures, which are defined in a header file, not in a DEF file. The EXE automatically loads the DLL and calls a method in the DLL to set the hook. When the DLL is loaded, DllMain sets an internal HMODULE variable which contains the DLL’s module handle. When the EXE calls the installHook procedure, the DLL sets the hook. All this works fine.

When my hook procedure receives a WM_SIZING message, it executes another internal procedure, which is supposed to use GDI+ to draw something on the window’s client DC. Using standard GDI works. However, GDI+ (which I need to use) does not work: the Graphics::Graphics(HDC) constructor causes the any program to crash as soon as I try to resize the window. Here is a snippet of the code that causes the crash:

void myFaultyProcedure(HWND hWnd) {
    RECT wndRect;
    GetWindowRect(hWnd,&wndRect);
    unsigned int wndWidth=wndRect.right-wndRect.left;
    unsigned int wndHeight=wndRect.bottom-wndRect.top;
    HDC hDc;
    PAINTSTRUCT ps;
    ULONG_PTR gdiplusToken;
    GdiplusStartupInput gdiplusStartupInput;
    GdiplusStartup(&gdiplusToken,&gdiplusStartupInput,NULL);
    hDc=BeginPaint(hWnd,&ps);
    Graphics graphics(hDc); // I think that this causes the program to crash
    delete &graphics;
    EndPaint(hWnd,&ps);
    ReleaseDC(hWnd,hDc);
    GdiplusShutdown(gdiplusToken);
}

The code calculates the width and height of a given window, gets a DC, starts GDI+, creates a Graphics object, deletes the Graphics object, releases the DC, and shuts down GDI+. I cannot image why programs would crash because of these lines. Notepad and Windows Explorer both crash (The Windows Explorer window is in a separate process from the Windows Explorer Shell).

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T08:13:02+00:00Added an answer on May 18, 2026 at 8:13 am

    Pretty sure it is the next line

     delete &graphics;
    

    that is making your code blow up. delete should only be used if the pointer was obtained by new, here you’re giving it something on the stack. Calling delete on a stack allocated variable makes no sense.

    To ensure that the Graphics instance is destroyed before GdiplusShutdown is called you can introduce a new scope:

    {
       Graphics g(...);
       g.DoStuff();
       ...
    } // g is destroyed here
    GdiplusShutdown(...)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.