mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2025-08-17 17:05:50 +00:00
18 lines
515 B
C
18 lines
515 B
C
#include "Platform.h"
|
|
#include "PlatformSockets.h"
|
|
|
|
typedef struct _STREAM_CONFIGURATION {
|
|
int width;
|
|
int height;
|
|
int fps;
|
|
} STREAM_CONFIGURATION, *PSTREAM_CONFIGURATION;
|
|
|
|
#include <stdio.h>
|
|
#define Limelog printf
|
|
|
|
char* allocateConfigDataForStreamConfig(PSTREAM_CONFIGURATION streamConfig);
|
|
int getConfigDataSize(PSTREAM_CONFIGURATION streamConfig);
|
|
|
|
void* initializeControlStream(IP_ADDRESS host, PSTREAM_CONFIGURATION streamConfig);
|
|
int startControlStream(void* context);
|
|
int stopControlStream(void* context); |