OpenFile method

int OpenFile(
  1. Pointer<Int8> lpFileName,
  2. Pointer<OFSTRUCT> lpReOpenBuff,
  3. int uStyle
)

Implementation

int OpenFile(
  ffi.Pointer<ffi.Int8> lpFileName,
  ffi.Pointer<OFSTRUCT> lpReOpenBuff,
  int uStyle,
) {
  return _OpenFile(
    lpFileName,
    lpReOpenBuff,
    uStyle,
  );
}