Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FGenericPlatformProcess
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Sends the message to process through pipe | GenericPlatform/GenericPlatformProcess.h | ||
static bool WritePipe
(
void* WritePipe, |
Sends data to process through pipe | GenericPlatform/GenericPlatformProcess.h |
WritePipe(void , const FString &, FString )
Description
Sends the message to process through pipe
| Name | WritePipe |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformProcess.h |
| Include Path | #include "GenericPlatform/GenericPlatformProcess.h" |
| Source | /Engine/Source/Runtime/Core/Private/GenericPlatform/GenericPlatformProcess.cpp |
static bool WritePipe
(
void * WritePipe,
const FString & Message,
FString * OutWritten
)
True if all bytes written successfully.
Parameters
| Name | Remarks |
|---|---|
| WritePipe | Pipe for writing. |
| Message | The message to be written. |
| OutWritten | Optional parameter to know how much of the string written. |
See Also
WritePipe(void , const uint8 , const int32, int32 *)
Description
Sends data to process through pipe
| Name | WritePipe |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformProcess.h |
| Include Path | #include "GenericPlatform/GenericPlatformProcess.h" |
| Source | /Engine/Source/Runtime/Core/Private/GenericPlatform/GenericPlatformProcess.cpp |
static bool WritePipe
(
void * WritePipe,
const uint8 * Data,
const int32 DataLength,
int32 * OutDataLength
)
True if all bytes written successfully.
Parameters
| Name | Remarks |
|---|---|
| WritePipe | Pipe for writing. |
| Data | The data to be written. |
| DataLength | how many bytes to write. |
| OutDataLength | Optional parameter to know how many bytes had been written. |