From 3beb937bcb98327235e0e7cf31740df6b65578a1 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 4 Nov 2016 17:06:34 -0400 Subject: [PATCH] Fix cef_time_t.year documentation (issue #1913) --- include/internal/cef_time.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/internal/cef_time.h b/include/internal/cef_time.h index 64e601fe0..f7e397f04 100644 --- a/include/internal/cef_time.h +++ b/include/internal/cef_time.h @@ -42,7 +42,8 @@ extern "C" { // Time information. Values should always be in UTC. /// typedef struct _cef_time_t { - int year; // Four digit year "2007" + int year; // Four or five digit year "2007" (1601 to 30827 on + // Windows, 1970 to 2038 on 32-bit POSIX) int month; // 1-based month (values 1 = January, etc.) int day_of_week; // 0-based day of week (0 = Sunday, etc.) int day_of_month; // 1-based day of month (1-31)