Hi all,
Will my pointer survive this conversion?
MyType_tag MyType;
MyType_tag* pMyPntr = &MyType;
int iUglyTempStorag e = (int)pMyPntr;
MyType_tag* pMyOtherPntr = (MyType_tag*)iU glyTempStorage;
--
Best wishes,
Allen
Will my pointer survive this conversion?
MyType_tag MyType;
MyType_tag* pMyPntr = &MyType;
int iUglyTempStorag e = (int)pMyPntr;
MyType_tag* pMyOtherPntr = (MyType_tag*)iU glyTempStorage;
--
Best wishes,
Allen
Comment