mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-08-07 18:36:34 +00:00
16 lines
326 B
C
16 lines
326 B
C
/**
|
|
* @file src/main.h
|
|
* @brief Declarations for the main entry point for Sunshine.
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* @brief Main application entry point.
|
|
* @examples
|
|
* main(1, const char* args[] = {"sunshine", nullptr});
|
|
* @examples_end
|
|
*
|
|
* @return Process or platform callback exit code.
|
|
*/
|
|
int main(int argc, char *argv[]);
|