mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-08-07 10:20:46 +00:00
c2420427b1
Co-authored-by: Vithorio Polten <reach@vithor.io>
16 lines
342 B
C
16 lines
342 B
C
/**
|
|
* @file src/main.h
|
|
* @brief Declarations for the main entry point for Sunshine.
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* @brief Main application entry point.
|
|
* @param argc The number of arguments.
|
|
* @param argv The arguments.
|
|
* @examples
|
|
* main(1, const char* args[] = {"sunshine", nullptr});
|
|
* @examples_end
|
|
*/
|
|
int main(int argc, char *argv[]);
|