Click here to Skip to main content
15,881,898 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: C# / C++ Interop, Odd behaviour from marshalled strings Pin
Chris Losinger14-Apr-09 4:35
professionalChris Losinger14-Apr-09 4:35 
GeneralRe: C# / C++ Interop, Odd behaviour from marshalled strings [modified] Pin
Mikey_H14-Apr-09 5:16
Mikey_H14-Apr-09 5:16 
GeneralRe: C# / C++ Interop, Odd behaviour from marshalled strings [modified] Pin
Chris Losinger14-Apr-09 5:29
professionalChris Losinger14-Apr-09 5:29 
GeneralRe: C# / C++ Interop, Odd behaviour from marshalled strings Pin
Iain Clarke, Warrior Programmer14-Apr-09 5:33
Iain Clarke, Warrior Programmer14-Apr-09 5:33 
GeneralRe: C# / C++ Interop, Odd behaviour from marshalled strings Pin
Chris Losinger14-Apr-09 5:40
professionalChris Losinger14-Apr-09 5:40 
GeneralRe: C# / C++ Interop, Odd behaviour from marshalled strings Pin
Iain Clarke, Warrior Programmer14-Apr-09 5:30
Iain Clarke, Warrior Programmer14-Apr-09 5:30 
GeneralRe: C# / C++ Interop, Odd behaviour from marshalled strings Pin
Mikey_H14-Apr-09 6:34
Mikey_H14-Apr-09 6:34 
QuestionHaving a generic function GetProcAddress for both unicode and ascii builds - fails in release mode Pin
Priya_Sundar14-Apr-09 3:43
Priya_Sundar14-Apr-09 3:43 
Hi All,

I am having a common code snippet to be compiled in VC6 and in Embedded vc++(CE). Right now i am working with vc6 part.

void* CNewClass::GetProcAddress1(HMODULE hModule, LPCTSTR lpFuncName)
{
	USES_CONVERSION;//for ATL, to use A2W declare this first  

	#ifdef _WINCE	//for wince
		LPCWSTR lpUnicodeFuncName = A2W( lpFuncName );
		return(GetProcAddress(hModule, lpUnicodeFuncName));
	#else // for vc6
		LPCSTR lpAsciiFuncName = (LPCSTR)W2A( lpFuncName );
		return (GetProcAddress(hModule, lpAsciiFuncName));
	#endif
}


Problem: This function (GetProcAddress) returns 0/fails in release mode. It works fine in debug mode.

General Info: The function GetProcAddress resolves to GetProcAddressA or GetProcAddressW based on the build(ascii or unicode) in EVC++ whereas in vc6, it is GetProcAddress only (simlar to GetProcAddressA with LPCSTR as second parameter).

Also just FYI: http://blog.voidnish.com/?p=70[^]

I tried lot of ways to typecastings.. but didnot work. Please help.

Priya Sundar

AnswerRe: Having a generic function GetProcAddress for both unicode and ascii builds - fails in release mode Pin
Iain Clarke, Warrior Programmer14-Apr-09 4:07
Iain Clarke, Warrior Programmer14-Apr-09 4:07 
AnswerRe: Having a generic function GetProcAddress for both unicode and ascii builds - fails in release mode Pin
CPallini14-Apr-09 5:47
mveCPallini14-Apr-09 5:47 
GeneralRe: Having a generic function GetProcAddress for both unicode and ascii builds - fails in release mode Pin
Priya_Sundar14-Apr-09 17:12
Priya_Sundar14-Apr-09 17:12 
Questionhow to create new thread Pin
hemlat14-Apr-09 3:39
hemlat14-Apr-09 3:39 
AnswerRe: how to create new thread Pin
Divyang Mithaiwala14-Apr-09 3:53
Divyang Mithaiwala14-Apr-09 3:53 
GeneralRe: how to create new thread Pin
hemlat14-Apr-09 4:01
hemlat14-Apr-09 4:01 
GeneralRe: how to create new thread Pin
Divyang Mithaiwala14-Apr-09 4:04
Divyang Mithaiwala14-Apr-09 4:04 
GeneralRe: how to create new thread Pin
Rajesh R Subramanian14-Apr-09 4:11
professionalRajesh R Subramanian14-Apr-09 4:11 
GeneralRe: how to create new thread Pin
ThatsAlok14-Apr-09 20:20
ThatsAlok14-Apr-09 20:20 
GeneralRe: how to create new thread Pin
Rajesh R Subramanian14-Apr-09 4:17
professionalRajesh R Subramanian14-Apr-09 4:17 
AnswerRe: how to create new thread Pin
Divyang Mithaiwala14-Apr-09 4:02
Divyang Mithaiwala14-Apr-09 4:02 
AnswerRe: how to create new thread Pin
Rajesh R Subramanian14-Apr-09 4:19
professionalRajesh R Subramanian14-Apr-09 4:19 
QuestionRe: how to create new thread Pin
David Crow14-Apr-09 4:37
David Crow14-Apr-09 4:37 
AnswerRe: how to create new thread Pin
hemlat14-Apr-09 20:34
hemlat14-Apr-09 20:34 
GeneralRe: how to create new thread Pin
Rajesh R Subramanian14-Apr-09 20:39
professionalRajesh R Subramanian14-Apr-09 20:39 
GeneralRe: how to create new thread Pin
hemlat14-Apr-09 21:01
hemlat14-Apr-09 21:01 
GeneralRe: how to create new thread Pin
hemlat14-Apr-09 22:03
hemlat14-Apr-09 22:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.