Implement CreateNamedPipeA

This commit is contained in:
2025-10-22 23:47:33 -06:00
parent fa3541fe2d
commit 8e532ccf78
12 changed files with 561 additions and 1 deletions

View File

@@ -198,6 +198,8 @@ void *resolveByName(const char *name) {
// namedpipeapi.h
if (strcmp(name, "CreatePipe") == 0)
return (void *)kernel32::CreatePipe;
if (strcmp(name, "CreateNamedPipeA") == 0)
return (void *)kernel32::CreateNamedPipeA;
// winbase.h
if (strcmp(name, "FindAtomA") == 0)