Click here to Skip to main content
15,789,698 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Array of char* Pin
Django_Untaken12-May-17 2:29
Django_Untaken12-May-17 2:29 
GeneralRe: Array of char* Pin
Jochen Arndt12-May-17 2:35
professionalJochen Arndt12-May-17 2:35 
GeneralRe: Array of char* Pin
leon de boer14-May-17 17:15
leon de boer14-May-17 17:15 
AnswerRe: Array of char* Pin
Huzifa Terkawi14-May-17 17:07
Huzifa Terkawi14-May-17 17:07 
AnswerRe: Array of char* Pin
Munchies_Matt17-May-17 23:27
Munchies_Matt17-May-17 23:27 
QuestionRedraw a CStatic,create it using Create,but the function DrawItem doesn't been run Pin
Member 1114733810-May-17 17:24
Member 1114733810-May-17 17:24 
AnswerRe: Redraw a CStatic,create it using Create,but the function DrawItem doesn't been run Pin
Jochen Arndt10-May-17 22:47
professionalJochen Arndt10-May-17 22:47 
Question[solved] Declare & Use Gobal Variable in C (Just like Singleton Variable) Pin
Django_Untaken9-May-17 2:42
Django_Untaken9-May-17 2:42 
Hello all. I am trying to re-use a file pointer at the start of the program and then close this when program is shutting down, after some work with it. So far I have come up with this
globals.h
=========
extern FILE* ptrLogFile;

file1.c
=======
#include "globals.h"
FILE* ptrLogFile = fopen("RequestsLog.log", "a+");

file2.c
========
#include "globals.h"
FILE* ptrLogFile = fopen("RequestsLog.log", "a+");

file3.c
========
#include "globals.h"

fclose(ptrLogFile);

But this is not what I am looking for. I want to initialize, using fopen(), the ptrLogFile just once (may be in globals.h?) and then re-use it in file1.c and file2.c as long as I want. Finally close it in file3.c when the program is shutting down. How do I do this? Thanks

modified 9-May-17 9:17am.

AnswerRe: Declare & Use Gobal Variable in C (Just like Singleton Variable) Pin
Jochen Arndt9-May-17 3:32
professionalJochen Arndt9-May-17 3:32 
GeneralRe: Declare & Use Gobal Variable in C (Just like Singleton Variable) Pin
Django_Untaken9-May-17 4:10
Django_Untaken9-May-17 4:10 
AnswerRe: Declare & Use Gobal Variable in C (Just like Singleton Variable) Pin
Jochen Arndt9-May-17 4:15
professionalJochen Arndt9-May-17 4:15 
AnswerRe: [solved] Declare & Use Gobal Variable in C (Just like Singleton Variable) Pin
Richard MacCutchan9-May-17 5:49
mveRichard MacCutchan9-May-17 5:49 
AnswerRe: [solved] Declare & Use Gobal Variable in C (Just like Singleton Variable) Pin
Rick York12-May-17 8:19
mveRick York12-May-17 8:19 
QuestionCTreeCtrl with CustomDraw Flickering Pin
SamwisePl5-May-17 1:29
SamwisePl5-May-17 1:29 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
Richard MacCutchan5-May-17 1:58
mveRichard MacCutchan5-May-17 1:58 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl5-May-17 2:17
SamwisePl5-May-17 2:17 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
Richard MacCutchan5-May-17 2:48
mveRichard MacCutchan5-May-17 2:48 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
Victor Nijegorodov5-May-17 7:00
Victor Nijegorodov5-May-17 7:00 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl7-May-17 20:46
SamwisePl7-May-17 20:46 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
leon de boer7-May-17 4:18
leon de boer7-May-17 4:18 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl7-May-17 20:47
SamwisePl7-May-17 20:47 
AnswerRe: CTreeCtrl with CustomDraw Flickering Pin
SamwisePl15-May-17 20:15
SamwisePl15-May-17 20:15 
GeneralRe: CTreeCtrl with CustomDraw Flickering Pin
leon de boer15-May-17 20:26
leon de boer15-May-17 20:26 
QuestionWinBioIdentify() function causing to stop service "WbioSrvc " when match found? Pin
Premnath Mali4-May-17 20:28
professionalPremnath Mali4-May-17 20:28 
Questionambiguity in multiple inheritance Pin
Member 1315992028-Apr-17 21:17
Member 1315992028-Apr-17 21:17 

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.