mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2025-12-26 14:41:14 +00:00
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[]);
|