Last active
December 29, 2016 01:45
-
-
Save michael-martinez/a0b4b2b459dcbd53c373f237efc3ccec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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