コード例 #1
0
ファイル: socket.cpp プロジェクト: shakalaca/DualBootPatcher
bool socket_write_int64(int fd, int64_t n)
{
    return write_copyable_type(fd, n);
}
コード例 #2
0
oc::result<void> socket_write_int64(int fd, int64_t n)
{
    return write_copyable_type(fd, n);
}
コード例 #3
0
ファイル: socket.cpp プロジェクト: shakalaca/DualBootPatcher
bool socket_write_uint32(int fd, uint32_t n)
{
    return write_copyable_type(fd, n);
}
コード例 #4
0
oc::result<void> socket_write_uint32(int fd, uint32_t n)
{
    return write_copyable_type(fd, n);
}