Share

ACTC_IMAGE_INFO

C++

struct ACTC_IMAGE_INFO {
  SIZE mSize;
  ACHAR mszResourceName[MAX_PATH];
  ACHAR mszSourceFile[MAX_PATH];
};

File

AcTc.h

Members

Members Description
mSize Size of the image
mszResourceName The resource identifier of the image if the image is a resource image. Empty if the image refers to an image file.
mszSourceFile If the image is from a resource file (in which case ACTC_IMAGE_INFO::msResourceName is not empty), this member holds the name of the resource DLL. If the image is not a resource image (ACTC_IMAGE_INFO::msResourceName is empty), it holds the URL of the image file. The URL can be either a relative or an absolute path. The image will be saved to this file.

Description

Container for information that is used to load an AcTcImage object's image.

Was this information helpful?