金字塔决策交易系统

 找回密码
 

微信登录

微信扫一扫,快速登录

搜索
查看: 2044|回复: 1

请问专家 DWORD m_time 怎么赋值转换到struct tm结构体里面

[复制链接]

9

主题

21

帖子

21

积分

Rank: 1

等级: 新手上路

注册:
2021-9-26
曾用名:
发表于 2021-9-26 19:54 | 显示全部楼层 |阅读模式
struct tm t;

memcpy(&t,  localtime(&(pData->m_pData[i].m_time)), sizeof(struct tm));

error C2664: 'localtime' : cannot convert parameter 1 from 'const unsigned long *' to 'const long *'
        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
MyCh.cpp
Generating Code...
执行 cl.exe 时出错.

StockFunc.dll - 1 error(s), 0 warning(s)

回复

使用道具 举报

9

主题

21

帖子

21

积分

Rank: 1

等级: 新手上路

注册:
2021-9-26
曾用名:
 楼主| 发表于 2021-9-27 12:05 | 显示全部楼层
struct tm   t;
time_t      tmp;
                tmp= (time_t)pData->m_pData[i].m_time;

                localtime_s(&(t), &tmp);


这样可行
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 微信登录

本版积分规则

手机版|小黑屋|上海金之塔信息技术有限公司 ( 沪ICP备13035422号 )

GMT+8, 2024-11-16 05:52 , Processed in 0.220706 second(s), 22 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表