main.cpp

Summary
main.cpp
Functions
winFuncOpenGL Window and rendering thread entry point.
gbaFuncGBA emulation thread entry point
mainEntry Point of the application

Functions

winFunc

void* winFunc(void *args)

OpenGL Window and rendering thread entry point.

Parameters

argsA pointer to the Memory structure

Returns

NULL

See Also

gbaFunc Memory

gbaFunc

void* gbaFunc(void *args)

GBA emulation thread entry point

Parameters

argsNULL shall be okay, it is needed by pthread

Returns

NULL

See Also

winFunc

main

int main(int argc,
char **argv)

Entry Point of the application

Parameters

argcargument count.
argvarguments array.

Returns

Exit Code.

void* winFunc(void *args)
OpenGL Window and rendering thread entry point.
void* gbaFunc(void *args)
GBA emulation thread entry point
int main(int argc,
char **argv)
Entry Point of the application
struct Memory
Represents the entire address space of the GBA.
Close