Skip to content

Instantly share code, notes, and snippets.

@michael-martinez
Last active December 29, 2016 01:45
Show Gist options
  • Save michael-martinez/a0b4b2b459dcbd53c373f237efc3ccec to your computer and use it in GitHub Desktop.
Save michael-martinez/a0b4b2b459dcbd53c373f237efc3ccec to your computer and use it in GitHub Desktop.
// Documentation
doxygen -g
doxygen Doxyfile
/**
* This is a documentation template.
*
* @param[in] i_px_v1
* comment
* @param[in] i_ui_v2
* comment
* @param[in] i_ui_v3
* comment
* @param[in/out] io_px_v4
* comment
* @retval 0 Success
*/
// Check whether file is present.
l_file = fopen( FILE, "r");
if( l_file != NULL )
{
fclose(l_file);
}
// Export functions into DLL
__dllspec (dllexport)
[DllImport ("DllName")]
private static extern int FunctionName();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment