SizeofResource function kernel32

int SizeofResource(
  1. int hModule,
  2. int hResInfo
)

Retrieves the size, in bytes, of the specified resource.

DWORD SizeofResource(
  [in, optional] HMODULE hModule,
  [in]           HRSRC   hResInfo
);

Implementation

int SizeofResource(int hModule, int hResInfo) =>
    _SizeofResource(hModule, hResInfo);