Click here to Skip to main content
15,899,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: typedef Pin
Rajkumar R18-Feb-08 22:28
Rajkumar R18-Feb-08 22:28 
GeneralRe: typedef Pin
George_George19-Feb-08 14:14
George_George19-Feb-08 14:14 
GeneralRe: typedef Pin
Rajkumar R18-Feb-08 22:24
Rajkumar R18-Feb-08 22:24 
GeneralRe: typedef Pin
Prasanth M V18-Feb-08 22:37
Prasanth M V18-Feb-08 22:37 
GeneralRe: typedef Pin
Rajkumar R18-Feb-08 22:50
Rajkumar R18-Feb-08 22:50 
GeneralRe: typedef Pin
Prasanth M V18-Feb-08 23:46
Prasanth M V18-Feb-08 23:46 
QuestionCRT Security and Gotcha Pin
suhast18-Feb-08 20:24
suhast18-Feb-08 20:24 
GeneralRe: CRT Security and Gotcha Pin
James R. Twine10-Mar-08 4:52
James R. Twine10-Mar-08 4:52 
   IMHO, the best way to do this is to create #defines that kick in when you are building is VC++6.0 that point back to the older versions of the SDK functions.

   For example:
#if _MSC_VER <= 1200
#define _tcscpy_s( D, BS, S )     _tcscpy( D, S );
#endif
   Something like that will work, but you may get warnings about unused parameters.

   This is not that hard to do, because you can find the include file that #defines the TCHAR-variants of the secure versions of the string handling functions and use it to make things easier.

   Peace!

-=- James
Please rate this message - let me know if I helped or not!<hr></hr>If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
See DeleteFXPFiles



GeneralE_NOINTERFACE Pin
john563218-Feb-08 19:59
john563218-Feb-08 19:59 
AnswerRe: E_NOINTERFACE Pin
Rajkumar R18-Feb-08 20:16
Rajkumar R18-Feb-08 20:16 
GeneralRe: E_NOINTERFACE Pin
john563218-Feb-08 20:34
john563218-Feb-08 20:34 
GeneralQuestion about Mutex and Atoms. [modified] Pin
User 238229218-Feb-08 19:55
User 238229218-Feb-08 19:55 
GeneralRe: Question about Mutex and Atoms. Pin
Iain Clarke, Warrior Programmer18-Feb-08 22:25
Iain Clarke, Warrior Programmer18-Feb-08 22:25 
Generalimport address table (IAT) Pin
George_George18-Feb-08 19:32
George_George18-Feb-08 19:32 
GeneralRe: import address table (IAT) [modified] Pin
User 238229218-Feb-08 19:43
User 238229218-Feb-08 19:43 
GeneralRe: import address table (IAT) Pin
George_George18-Feb-08 20:10
George_George18-Feb-08 20:10 
GeneralRegistering an OCX Pin
Chandrasekharan P18-Feb-08 18:59
Chandrasekharan P18-Feb-08 18:59 
QuestionRe: Registering an OCX Pin
Rajesh R Subramanian18-Feb-08 19:18
professionalRajesh R Subramanian18-Feb-08 19:18 
GeneralRe: Registering an OCX Pin
Chandrasekharan P18-Feb-08 19:27
Chandrasekharan P18-Feb-08 19:27 
AnswerRe: Registering an OCX Pin
Rajesh R Subramanian18-Feb-08 19:39
professionalRajesh R Subramanian18-Feb-08 19:39 
GeneralRe: Registering an OCX Pin
Chandrasekharan P18-Feb-08 22:27
Chandrasekharan P18-Feb-08 22:27 
GeneralError C2440 in VC++. Pin
T.RATHA KRISHNAN18-Feb-08 18:57
T.RATHA KRISHNAN18-Feb-08 18:57 
AnswerRe: Error C2440 in VC++. Pin
Rajkumar R18-Feb-08 19:04
Rajkumar R18-Feb-08 19:04 
GeneralRe: Error C2440 in VC++. Pin
T.RATHA KRISHNAN18-Feb-08 19:26
T.RATHA KRISHNAN18-Feb-08 19:26 
GeneralRe: Error C2440 in VC++. Pin
Chandrasekharan P18-Feb-08 19:12
Chandrasekharan P18-Feb-08 19:12 

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.