Click here to Skip to main content
15,884,298 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Come in please, which VC do you like? Pin
«_Superman_»3-Aug-09 22:09
professional«_Superman_»3-Aug-09 22:09 
GeneralRe: Come in please, which VC do you like? Pin
Naveen3-Aug-09 22:18
Naveen3-Aug-09 22:18 
AnswerRe: Come in please, which VC do you like? Pin
Rajesh R Subramanian3-Aug-09 23:01
professionalRajesh R Subramanian3-Aug-09 23:01 
AnswerRe: Come in please, which VC do you like? Pin
songBX3-Aug-09 23:29
songBX3-Aug-09 23:29 
GeneralRe: Come in please, which VC do you like? Pin
Kushagra Tiwari4-Aug-09 3:08
Kushagra Tiwari4-Aug-09 3:08 
AnswerRe: Come in please, which VC do you like? Pin
Joe Woodbury4-Aug-09 16:24
professionalJoe Woodbury4-Aug-09 16:24 
AnswerRe: Come in please, which VC do you like? Pin
Moak8-Aug-09 8:39
Moak8-Aug-09 8:39 
QuestionIs self-defined OS version safe? Pin
includeh103-Aug-09 20:39
includeh103-Aug-09 20:39 
Our users use different OS, so we use Win2k on develope PC.

CryptoAPI requires (as in MSDN)

Windows NT/2000: Requires Windows NT 4.0 or later.
Windows 95/98: Requires Windows 95 OSR2 or later (or Windows 95 with Internet Explorer 3.02 or later).
Header: Declared in wincrypt.h.
Library: Use advapi32.lib.

So CryptoAPI can not be used by win2k.

I define _WIN32_WINNT myself then include <wincrypt.h> as following

//--------- my OS is not NT
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0400
#endif

#include <wincrypt.h>
//--------------------------------

Now all are fine.
I just worry about if the piece of code may cause trouble in the future after distributing software to users?

Do you think if it is OK?
QuestionUnicode - Excel document Pin
Karri Mohan3-Aug-09 20:35
Karri Mohan3-Aug-09 20:35 
AnswerRe: Unicode - Excel document Pin
AWEIguoxin6-Aug-09 21:14
AWEIguoxin6-Aug-09 21:14 
QuestionDefault constructors... Pin
p_19603-Aug-09 18:43
p_19603-Aug-09 18:43 
AnswerRe: Default constructors... Pin
«_Superman_»3-Aug-09 18:53
professional«_Superman_»3-Aug-09 18:53 
GeneralRe: Default constructors... Pin
amatecki3-Aug-09 20:19
professionalamatecki3-Aug-09 20:19 
GeneralRe: Default constructors... Pin
Michael Dunn3-Aug-09 20:59
sitebuilderMichael Dunn3-Aug-09 20:59 
AnswerRe: Default constructors... Pin
Adam Roderick J3-Aug-09 19:04
Adam Roderick J3-Aug-09 19:04 
QuestionUnicode restriction Pin
Karri Mohan3-Aug-09 18:09
Karri Mohan3-Aug-09 18:09 
AnswerRe: Unicode restriction Pin
enhzflep3-Aug-09 18:31
enhzflep3-Aug-09 18:31 
QuestionHow to develop a game like Zuma?I really need some source files to learn! Pin
lxgtzh3-Aug-09 17:32
lxgtzh3-Aug-09 17:32 
AnswerRe: How to develop a game like Zuma?I really need some source files to learn! Pin
Bacon Ultimate Cheeseburger3-Aug-09 17:45
Bacon Ultimate Cheeseburger3-Aug-09 17:45 
AnswerRe: How to develop a game like Zuma?I really need some source files to learn! Pin
Cedric Moonen3-Aug-09 21:09
Cedric Moonen3-Aug-09 21:09 
QuestionC++ dll VS 2008 Pin
indikat3-Aug-09 16:59
indikat3-Aug-09 16:59 
AnswerRe: C++ dll VS 2008 Pin
«_Superman_»3-Aug-09 18:43
professional«_Superman_»3-Aug-09 18:43 
GeneralRe: C++ dll VS 2008 Pin
indikat3-Aug-09 19:29
indikat3-Aug-09 19:29 
GeneralRe: C++ dll VS 2008 Pin
«_Superman_»3-Aug-09 19:40
professional«_Superman_»3-Aug-09 19:40 
GeneralRe: C++ dll VS 2008 Pin
indikat4-Aug-09 2:03
indikat4-Aug-09 2: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.