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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:31:29+00:00 2026-05-31T08:31:29+00:00

I have a Visual Studio 2008 C++ application for Windows where I have wrapped

  • 0

I have a Visual Studio 2008 C++ application for Windows where I have wrapped some platform functions that take TCHAR-based parameters and therefore have both a wide-character and narrow version selected by an ifdef.

#ifdef UNICODE
    #define QueryValueW QueryValue
#else
    #define QueryValueA QueryValue
#endif

inline DWORD QueryValueW( HANDLE h, LPCWSTR str )
{
    return ::SomeFuncW( h, 0, true, str, 0, 0 );
}

inline DWORD QueryValueA( HANDLE h, LPCSTR str )
{
    return ::SomeFuncA( h, 0, true, str, 0, 0 );
}

I’d prefer to templatize this such that the compiler can automatically select the correct version of SomeFunc based on what type of string I pass in rather than an ifdef.

template< typename charT >
inline DWORD QueryValue( HANDLE h, const charT* str )
{
    // Call ::SomeFuncW or ::SomeFuncA depending on the type of `charT`.
}

Does anybody have a suggestion on how this can be accomplished? Preferably without resorting to RTTI.

  • 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-31T08:31:31+00:00Added an answer on May 31, 2026 at 8:31 am

    This?

    template<typename T>
    inline DWORD QueryValue( HANDLE h, T str )
    {
       //...
    }
    
    template<>
    inline DWORD QueryValue<LPCSTR>( HANDLE h, LPCSTR str )
    {
       //...
    }
    

    The first version will be called unless you explicitly call it with a LPCSTR parameter.

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

Sidebar

Related Questions

I have a Visual Studio 2008 Windows Mobile 6 C++ application that is using
i have an windows application that i have made by visual studio 2008.this application
I have a Windows Forms application that was created in Visual Studio 2008 and
I have a Windows Forms application in C#/Visual Studio 2008 with an IE WebBrowser
Using Visual Studio 2008, c#, .net 2.0. I have a Windows Forms client application
I have a Visual Studio 2008 C++ application that does something like this: template<
I have a GUI C++ application (Visual Studio 2008) that needs to be converted
Let's create WinForms Application (I have Visual Studio 2008 running on Windows Vista, but
I have a Visual Studio 2008 C++ Windows Mobile 6 application where I'm using
I have a Visual Studio 2008 C++ application for Windows 7 where I would

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.