Click here to Skip to main content
15,991,142 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Can not find where to define an identifier.. Pin
Richard MacCutchan25-Jul-24 0:22
mveRichard MacCutchan25-Jul-24 0:22 
GeneralRe: Can not find where to define an identifier.. Pin
Carbonkevlar1325-Jul-24 0:43
Carbonkevlar1325-Jul-24 0:43 
GeneralRe: Can not find where to define an identifier.. Pin
Richard MacCutchan25-Jul-24 0:58
mveRichard MacCutchan25-Jul-24 0:58 
AnswerRe: Can not find where to define an identifier.. Pin
CPallini25-Jul-24 0:26
mveCPallini25-Jul-24 0:26 
GeneralRe: Can not find where to define an identifier.. Pin
Carbonkevlar1325-Jul-24 0:41
Carbonkevlar1325-Jul-24 0:41 
GeneralRe: Can not find where to define an identifier.. Pin
CPallini25-Jul-24 1:01
mveCPallini25-Jul-24 1:01 
GeneralRe: Can not find where to define an identifier.. Pin
Carbonkevlar1325-Jul-24 1:12
Carbonkevlar1325-Jul-24 1:12 
GeneralRe: Can not find where to define an identifier.. Pin
CPallini25-Jul-24 1:23
mveCPallini25-Jul-24 1:23 
Put those declarations inside the screens3.h header file. For instance:
C++
// screens3.h 
#ifndef _SCREENS3_
#define _SCREENS3_
  void Screen3Enter(void);
  void Screen3Create(void);
  void Screen3Update(void);
  void Screen3Exit(void);
#endif


then put
C++
#include "screens3.h"
in every source file that needs them (e.g. screens.cpp)
"In testa che avete, Signor di Ceprano?"
-- Rigoletto

GeneralRe: Can not find where to define an identifier.. Pin
Carbonkevlar1325-Jul-24 2:10
Carbonkevlar1325-Jul-24 2:10 
QuestionRe: Can not find where to define an identifier.. Pin
CPallini25-Jul-24 2:51
mveCPallini25-Jul-24 2:51 
AnswerRe: Can not find where to define an identifier.. Pin
Carbonkevlar1325-Jul-24 3:03
Carbonkevlar1325-Jul-24 3:03 
GeneralRe: Can not find where to define an identifier.. Pin
CPallini25-Jul-24 3:15
mveCPallini25-Jul-24 3:15 
GeneralRe: Can not find where to define an identifier.. Pin
Richard MacCutchan25-Jul-24 5:03
mveRichard MacCutchan25-Jul-24 5:03 
GeneralRe: Can not find where to define an identifier.. Pin
Richard MacCutchan25-Jul-24 2:47
mveRichard MacCutchan25-Jul-24 2:47 
QuestionC++20 UNORDERED_MAP OBJECT WITH CLASS FUNCTIONS FROM DLL AS VALUE Pin
Oscar Kogosov 202322-Jul-24 20:37
Oscar Kogosov 202322-Jul-24 20:37 
AnswerRe: C++20 UNORDERED_MAP OBJECT WITH CLASS FUNCTIONS FROM DLL AS VALUE Pin
Richard MacCutchan23-Jul-24 0:48
mveRichard MacCutchan23-Jul-24 0:48 
GeneralRe: C++20 UNORDERED_MAP OBJECT WITH CLASS FUNCTIONS FROM DLL AS VALUE Pin
Oscar Kogosov 202323-Jul-24 4:41
Oscar Kogosov 202323-Jul-24 4:41 
GeneralRe: C++20 UNORDERED_MAP OBJECT WITH CLASS FUNCTIONS FROM DLL AS VALUE Pin
Richard MacCutchan23-Jul-24 4:51
mveRichard MacCutchan23-Jul-24 4:51 
GeneralRe: C++20 UNORDERED_MAP OBJECT WITH CLASS FUNCTIONS FROM DLL AS VALUE Pin
Oscar Kogosov 202323-Jul-24 5:02
Oscar Kogosov 202323-Jul-24 5:02 
GeneralRe: C++20 UNORDERED_MAP OBJECT WITH CLASS FUNCTIONS FROM DLL AS VALUE Pin
Richard MacCutchan23-Jul-24 5:14
mveRichard MacCutchan23-Jul-24 5:14 
QuestionglReadPixels unmatched values Pin
etechX224-Jul-24 18:40
etechX224-Jul-24 18:40 
AnswerRe: glReadPixels wrong values Pin
Victor Nijegorodov21-Jul-24 19:53
Victor Nijegorodov21-Jul-24 19:53 
QuestionC program(homework) Pin
Member 1631107418-Jul-24 20:36
Member 1631107418-Jul-24 20:36 
AnswerRe: C program(homework) Pin
OriginalGriff18-Jul-24 20:37
mveOriginalGriff18-Jul-24 20:37 
GeneralRe: C program(homework) Pin
Member 1631107418-Jul-24 20:50
Member 1631107418-Jul-24 20:50 

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.