Click here to Skip to main content
15,890,438 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Unresolved external symbol Pin
CPallini2-Jun-09 21:34
mveCPallini2-Jun-09 21:34 
GeneralRe: Unresolved external symbol Pin
Pryabu2-Jun-09 21:38
Pryabu2-Jun-09 21:38 
QuestionRe: Unresolved external symbol Pin
CPallini2-Jun-09 21:42
mveCPallini2-Jun-09 21:42 
AnswerRe: Unresolved external symbol Pin
Pryabu2-Jun-09 21:50
Pryabu2-Jun-09 21:50 
GeneralRe: Unresolved external symbol Pin
CPallini2-Jun-09 22:01
mveCPallini2-Jun-09 22:01 
GeneralRe: Unresolved external symbol Pin
Pryabu3-Jun-09 0:28
Pryabu3-Jun-09 0:28 
GeneralRe: Unresolved external symbol Pin
Stuart Dootson2-Jun-09 22:02
professionalStuart Dootson2-Jun-09 22:02 
AnswerRe: Unresolved external symbol Pin
Pryabu3-Jun-09 1:11
Pryabu3-Jun-09 1:11 
In COM_1.cpp file,Im having the definition for GetSignalValue() function as follows:

// COM.cpp: implementation of the CLogger class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "COM_1.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CCOM::CCOM()
{

}

int FAR PASCAL GetSignalValue(int m_lCurValue)
{
long lReturnValue = m_lCurValue;
m_lCurValue += 10;

return m_lCurValue;
}

In .def file I declared the function as follows:

; COM.def : Declares the module parameters for the DLL.

LIBRARY "COM"
DESCRIPTION 'COM Windows Dynamic Link Library'

EXPORTS
; Explicit exports can go here

; COM.cpp Ordinal Numbers 100 - 110

GetSignalValue @102
AnswerRe: Unresolved external symbol Pin
Code-o-mat2-Jun-09 21:52
Code-o-mat2-Jun-09 21:52 
JokeRe: Unresolved external symbol Pin
CPallini2-Jun-09 22:03
mveCPallini2-Jun-09 22:03 
GeneralRe: Unresolved external symbol Pin
Code-o-mat2-Jun-09 22:09
Code-o-mat2-Jun-09 22:09 
QuestionPlease help me regarding LoadCursor and SetCursor Pin
ptr_Electron2-Jun-09 21:18
ptr_Electron2-Jun-09 21:18 
Question3D border for Edit control Pin
Benjamin Bruno2-Jun-09 19:30
Benjamin Bruno2-Jun-09 19:30 
AnswerRe: 3D border for Edit control Pin
Naveen2-Jun-09 20:18
Naveen2-Jun-09 20:18 
Questionquestion regarding sockets Pin
mkrtchyanmarianna2-Jun-09 19:12
mkrtchyanmarianna2-Jun-09 19:12 
AnswerRe: question regarding sockets Pin
Stuart Dootson2-Jun-09 22:06
professionalStuart Dootson2-Jun-09 22:06 
QuestionHow to free unsigned long pointer variable? Pin
VCProgrammer2-Jun-09 19:05
VCProgrammer2-Jun-09 19:05 
AnswerRe: How to free unsigned long pointer variable? Pin
Naveen2-Jun-09 20:03
Naveen2-Jun-09 20:03 
QuestionWindow maximize and Minimize Pin
002comp2-Jun-09 18:45
002comp2-Jun-09 18:45 
AnswerRe: Window maximize and Minimize Pin
Naveen2-Jun-09 18:56
Naveen2-Jun-09 18:56 
GeneralRe: Window maximize and Minimize Pin
002comp2-Jun-09 19:06
002comp2-Jun-09 19:06 
GeneralRe: Window maximize and Minimize Pin
Naveen2-Jun-09 19:11
Naveen2-Jun-09 19:11 
GeneralRe: Window maximize and Minimize Pin
002comp2-Jun-09 20:36
002comp2-Jun-09 20:36 
GeneralRe: Window maximize and Minimize Pin
Naveen2-Jun-09 20:48
Naveen2-Jun-09 20:48 
GeneralRe: Window maximize and Minimize Pin
002comp2-Jun-09 21:21
002comp2-Jun-09 21:21 

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.