mirror of
https://github.com/daeken/Zookeeper.git
synced 2025-04-02 10:52:54 -04:00
13 lines
222 B
C++
13 lines
222 B
C++
#pragma once
|
|
#include "Kernel.hpp"
|
|
|
|
void NTAPI kernel_RtlInitAnsiString(
|
|
STRING *DestinationString,
|
|
char *SourceString
|
|
);
|
|
|
|
bool NTAPI kernel_RtlEqualString(
|
|
STRING *String1,
|
|
STRING *String2,
|
|
bool CaseInsensitive
|
|
);
|