C에서 아래와 같이 메모리 할당을 한 것을 델파이에서 전환하려고 하는데요
if ((image = (image_t *)malloc(sizeof(image_t))) == NULL)
{
free(image);
image = NULL;
return NULL;
}
memset((void *)image, 0, sizeof(image_t));
이걸 변환하려면
image = new(image_t);
하면 에러 검출까지 다 알아서 해주나요?
0 COMMENTS
(NOTICE) You must be logged in to comment on this post.