Final Platform Layer 0.9.8-beta
Loading...
Searching...
No Matches
Hello World Console Application!

Table of Contents

main.cpp

#define FPL_IMPLEMENTATION
int main(int argc, char **argv) {
int result;
fplConsoleOut("Hello World!");
result = 0;
} else {
result = -1;
}
return(result);
}
Final Platform Layer (FPL) - A C99 Single-Header-File Platform Abstraction Library.
fpl_platform_api void fplConsoleOut(const char *text)
Writes the given text to the standard output console buffer.
fpl_common_api void fplPlatformRelease()
Releases the resources allocated by the platform layer.
fpl_common_api bool fplPlatformInit(const fplInitFlags initFlags, const fplSettings *initSettings)
Initializes the platform layer.
@ fplInitFlags_Console
Create a console window.