Rename "SystemTime" to "t" (this is *not* SYSTEMTIME - avoid
confusion).
This commit is contained in:
parent
fea260a446
commit
ee0c4f86f2
|
@ -29,7 +29,7 @@ time_t ConvertTimeString(LPCSTR asctime)
|
||||||
{
|
{
|
||||||
char tmpChar[TIME_STRING_LEN];
|
char tmpChar[TIME_STRING_LEN];
|
||||||
char *tmpChar2;
|
char *tmpChar2;
|
||||||
struct tm SystemTime;
|
struct tm t;
|
||||||
int timelen = strlen(asctime);
|
int timelen = strlen(asctime);
|
||||||
|
|
||||||
if(!asctime || !timelen)
|
if(!asctime || !timelen)
|
||||||
|
@ -56,11 +56,11 @@ time_t ConvertTimeString(LPCSTR asctime)
|
||||||
tmpChar[22]='\0';
|
tmpChar[22]='\0';
|
||||||
tmpChar[25]='\0';
|
tmpChar[25]='\0';
|
||||||
|
|
||||||
SystemTime.tm_year = atoi(tmpChar+12) - 1900;
|
t.tm_year = atoi(tmpChar+12) - 1900;
|
||||||
SystemTime.tm_mday = atoi(tmpChar+5);
|
t.tm_mday = atoi(tmpChar+5);
|
||||||
SystemTime.tm_hour = atoi(tmpChar+17);
|
t.tm_hour = atoi(tmpChar+17);
|
||||||
SystemTime.tm_min = atoi(tmpChar+20);
|
t.tm_min = atoi(tmpChar+20);
|
||||||
SystemTime.tm_sec = atoi(tmpChar+23);
|
t.tm_sec = atoi(tmpChar+23);
|
||||||
|
|
||||||
/* and month */
|
/* and month */
|
||||||
tmpChar2 = tmpChar + 8;
|
tmpChar2 = tmpChar + 8;
|
||||||
|
@ -68,45 +68,45 @@ time_t ConvertTimeString(LPCSTR asctime)
|
||||||
{
|
{
|
||||||
case 'n':
|
case 'n':
|
||||||
if(tmpChar2[1]=='a')
|
if(tmpChar2[1]=='a')
|
||||||
SystemTime.tm_mon = 0;
|
t.tm_mon = 0;
|
||||||
else
|
else
|
||||||
SystemTime.tm_mon = 5;
|
t.tm_mon = 5;
|
||||||
break;
|
break;
|
||||||
case 'b':
|
case 'b':
|
||||||
SystemTime.tm_mon = 1;
|
t.tm_mon = 1;
|
||||||
break;
|
break;
|
||||||
case 'r':
|
case 'r':
|
||||||
if(tmpChar2[1]=='a')
|
if(tmpChar2[1]=='a')
|
||||||
SystemTime.tm_mon = 2;
|
t.tm_mon = 2;
|
||||||
else
|
else
|
||||||
SystemTime.tm_mon = 3;
|
t.tm_mon = 3;
|
||||||
break;
|
break;
|
||||||
case 'y':
|
case 'y':
|
||||||
SystemTime.tm_mon = 4;
|
t.tm_mon = 4;
|
||||||
break;
|
break;
|
||||||
case 'l':
|
case 'l':
|
||||||
SystemTime.tm_mon = 6;
|
t.tm_mon = 6;
|
||||||
break;
|
break;
|
||||||
case 'g':
|
case 'g':
|
||||||
SystemTime.tm_mon = 7;
|
t.tm_mon = 7;
|
||||||
break;
|
break;
|
||||||
case 'p':
|
case 'p':
|
||||||
SystemTime.tm_mon = 8;
|
t.tm_mon = 8;
|
||||||
break;
|
break;
|
||||||
case 't':
|
case 't':
|
||||||
SystemTime.tm_mon = 9;
|
t.tm_mon = 9;
|
||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
SystemTime.tm_mon = 10;
|
t.tm_mon = 10;
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
SystemTime.tm_mon = 11;
|
t.tm_mon = 11;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
FIXME("\n");
|
FIXME("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
return mktime(&SystemTime);
|
return mktime(&t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue