typedefs were created for native functions NtReadVirtualMemory,NtResumeThread,NtQueryInformationProcess.
Using these typedefs, pointers to the Native functions directly from ntdll.dll using GetProcAddress(GetModuleHandle(ntdll.dll), "function_name"); are stored after casting them with their respective NTAPI* type.
Working
Get PEB address and pointer to image base address using NtQueryInformationProcess, from the returned process information structure.
Get process image base address using NtReadVirtualMemory (&iBase).
Use it with NtReadVirtualMemory to read target process image headers (hBuffer).
Address of entry point can be calculated with this information.