BeginUpdateResource function kernel32

int BeginUpdateResource(
  1. Pointer<Utf16> pFileName,
  2. int bDeleteExistingResources
)

Retrieves a handle that can be used by the UpdateResource function to add, delete, or replace resources in a binary module.

HANDLE BeginUpdateResourceW(
  LPCWSTR pFileName,
  BOOL    bDeleteExistingResources
);

Implementation

int BeginUpdateResource(
        Pointer<Utf16> pFileName, int bDeleteExistingResources) =>
    _BeginUpdateResource(pFileName, bDeleteExistingResources);