Click here to Skip to main content
15,887,746 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: \t char gives 3 spaces instead of 4 [modified] Pin
sphereboy15-Jul-06 16:14
sphereboy15-Jul-06 16:14 
GeneralRe: \t char gives 3 spaces instead of 4 Pin
led mike15-Jul-06 16:34
led mike15-Jul-06 16:34 
GeneralRe: \t char gives 3 spaces instead of 4 Pin
sphereboy15-Jul-06 19:36
sphereboy15-Jul-06 19:36 
GeneralRe: \t char gives 3 spaces instead of 4 Pin
led mike16-Jul-06 20:11
led mike16-Jul-06 20:11 
QuestionHow-to convert a Makefile into VC2005 express project? Pin
vgnogueira15-Jul-06 13:35
vgnogueira15-Jul-06 13:35 
AnswerRe: How-to convert a Makefile into VC2005 express project? Pin
Mike Dimmick16-Jul-06 7:14
Mike Dimmick16-Jul-06 7:14 
QuestionRe: How-to convert a Makefile into VC2005 express project? Pin
stretchcoder4-Oct-06 8:15
stretchcoder4-Oct-06 8:15 
AnswerRe: How-to convert a Makefile into VC2005 express project? Pin
Mike Dimmick5-Oct-06 1:01
Mike Dimmick5-Oct-06 1:01 
If _MAX__TIME64_T were not defined, it would not compile, but then that's part of the C run-time library and isn't compiled when you build your project (instead, the static library or the import library for the C run-time DLL is linked into your program).

_MAX__TIME64_T is defined in ctime.h in the VC\crt\src folder under the Visual Studio 2005 install folder, if you have installed the C run-time source. The maximum value of a _time64_t is the number of seconds from midnight, 1 January 1970 to 11:59:59pm, 31 December 3000. The value in the parameter you're passing to gmtime64 is exceeding this.

If the code uses a time_t* pointing into a larger structure which is coming from the ZIP/GZip file, you should either define the macro _USE_32BIT_TIME_T or change the data type to _time32_t and call gmtime32.

Stability. What an interesting concept. -- Chris Maunder

GeneralRe: How-to convert a Makefile into VC2005 express project? Pin
stretchcoder5-Oct-06 3:31
stretchcoder5-Oct-06 3:31 
QuestionTaskbar Starting Message Pin
Gregory Braun15-Jul-06 13:13
Gregory Braun15-Jul-06 13:13 
AnswerRe: Taskbar Starting Message Pin
Garth J Lancaster15-Jul-06 13:34
professionalGarth J Lancaster15-Jul-06 13:34 
AnswerRe: Taskbar Starting Message Pin
Ravi Bhavnani16-Jul-06 5:33
professionalRavi Bhavnani16-Jul-06 5:33 
GeneralRe: Taskbar Starting Message Pin
Gregory Braun16-Jul-06 17:00
Gregory Braun16-Jul-06 17:00 
QuestionDraw a text overlay in a running DirectX game (Battlefield 2) [modified] Pin
StefanKittel15-Jul-06 12:50
StefanKittel15-Jul-06 12:50 
AnswerRe: Draw a text overlay in a running DirectX game (Battlefield 2) Pin
led mike15-Jul-06 16:05
led mike15-Jul-06 16:05 
Questionerror C2061: syntax error : identifier 'ostream' Pin
jon-8015-Jul-06 8:39
professionaljon-8015-Jul-06 8:39 
AnswerRe: error C2061: syntax error : identifier 'ostream' Pin
Jun Du15-Jul-06 10:16
Jun Du15-Jul-06 10:16 
AnswerRe: error C2061: syntax error : identifier 'ostream' Pin
Stephen Hewitt15-Jul-06 21:43
Stephen Hewitt15-Jul-06 21:43 
GeneralClass view does not work properly in VS2005 [modified] Pin
gianct15-Jul-06 8:24
gianct15-Jul-06 8:24 
Questionspecial charset [modified] Pin
hamavreg15-Jul-06 4:54
hamavreg15-Jul-06 4:54 
AnswerRe: special charset Pin
Hamid_RT15-Jul-06 5:09
Hamid_RT15-Jul-06 5:09 
QuestionChoosing a printer and init printing... Pin
Cris15-Jul-06 4:04
Cris15-Jul-06 4:04 
AnswerRe: Choosing a printer and init printing... Pin
Hamid_RT15-Jul-06 5:03
Hamid_RT15-Jul-06 5:03 
GeneralRe: Choosing a printer and init printing... Pin
Cris21-Jul-06 2:56
Cris21-Jul-06 2:56 
GeneralRe: Choosing a printer and init printing... Pin
Hamid_RT21-Jul-06 4:14
Hamid_RT21-Jul-06 4:14 

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.