virtual L_INT LScreenCapture::CaptureGetResCount(pszFileName, nResType, pnCount)
Counts the number of resources of the specified type in the given executable file.
Character string containing the name of the exe (or dll) from which the resource should be counted.
Specifies the type of resource to count. Possible values are:
Value | Meaning |
---|---|
RESTYPE_BITMAP | count bitmap resources |
RESTYPE_ICON | count icon resources |
RESTYPE_CURSOR | count cursor resources |
Address of a variable to be filled with the number of resources found.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
After calling this function, pnCount points to the number of resources of the specified type that were found in the given executable file.
Win32, x64.
L_INT LScreenCapture__CaptureGetResCountExample(HWND hWnd)
{
L_INT nRet;
LBitmap LeadBitmap;
LScreenCapture screenCapture(&LeadBitmap);
L_INT32 lBitmapCount;
L_TCHAR szDummyBuffer[50];
// CaptureGetResCount
nRet = screenCapture.CaptureGetResCount(TEXT("MFCDEM32.EXE"), RESTYPE_BITMAP, &lBitmapCount);
if(nRet == SUCCESS)
{
wsprintf(szDummyBuffer, TEXT("EXE file contains %d bitmaps"), lBitmapCount);
MessageBox(hWnd, szDummyBuffer, TEXT("CaptureGetResCount"), MB_OK);
}
else
return nRet;
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document