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 6581129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:06:49+00:00 2026-05-25T16:06:49+00:00

I am porting a legacy C program to C++. However, the compiler is not

  • 0

I am porting a legacy C program to C++. However, the compiler is not happy and requires additional typecastings for C++. For example, I have this function…

 void foreach_element_in_patch(Patch *patch, void (*func)(), 
long arg1, long process_id);

In the original C Code, it is used like this…

 foreach_element_in_patch( patch, display_interactions_in_element, 
mode, process_id );

However, for C++ I need to typecast the second argument to stop the compiler from gernerating an error.

 foreach_element_in_patch( patch, (void (*)())display_interactions_in_element, 
mode, process_id );

The error generated by the compiler is the following…

invalid conversion from ‘void (*)(Patch*, long int, long int)’ to ‘void (*)()’

Now is there a way to ask the compiler not to generate errors for such things. I have tried prefixing this function with extern "C" but still the C++ compiler is not happy. My applications is loaded with such code and I do not have the time to adjust so much code.

  • 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-25T16:06:49+00:00Added an answer on May 25, 2026 at 4:06 pm

    The easiest thing to do is to change the function prototypes and headers to declare the correct type of function pointer. So for example, for

    void foreach_element_in_patch(Patch *patch, void (*func)(), 
     long arg1, long process_id);
    

    I just need to change it to

    void foreach_element_in_patch(Patch *patch, void (*)(Patch*, long int, long int), 
     long arg1, long process_id);
    

    Instead of making changes at every function call.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a chance to start porting a legacy application written in C++/Powerbuilder to
I have legacy code which I am incrementally porting to Unicode characters in Visual
I have a legacy Struts 1.2.8 application that I'm maintaining and porting from Oracle
We are in the process of porting a legacy system to .NET, both to
Porting an application from C# (1.1 framework) to VB.NET (3.5 framework), and I have
I am porting some legacy code from windows to Linux (Ubuntu Karmic to be
I am responsible for porting a class from legacy Win32 code to .Net and
I'm building legacy code using the GNUARM C compiler and trying to resolve all
I'm porting a legacy (read ancient) .asp application to a new server for backup
As part of porting a legacy application to GWT, we need to embed our

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.