Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: added docs to deploy.hpp #138

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

charliekush
Copy link
Contributor

No description provided.

Comment on lines +21 to +23
READ, /**< Read-only mode. */
WRITE, /**< Write-only mode. */
RDWR /**< Read-write mode. */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Preference putting docstrings on the lines preceding the symbol

*/
* @param pData Data to write.
* @param nBytes Number of bytes to write.
* @return int Number of bytes written.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

* @return int 1 if successful, otherwise 0
* @param name Name of the session to open.
* @param state File access state (READ, WRITE, RDWR).
* @return int 1 if successful, otherwise 0.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

*/
* @param pData Buffer to store the read data.
* @param nBytes Number of bytes to read.
* @return int Number of bytes read.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

*
* @return length
*/
* @return int Length of the file in bytes.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

* @return int 1 if successful, otherwise 0
*/
* @param loc Location to seek to.
* @return int 1 if successful, otherwise 0.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

*
* @return int 1 if successful, otherwise 0
*/
* @return int 1 if successful, otherwise 0.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

*
* @return int 1 if successful, otherwise 0
*/
* @return int 1 if successful, otherwise 0.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

* @return int 1 if successful, otherwise 0
*/
* @param nBytes Number of bytes to truncate the file to.
* @return int 1 if successful, otherwise 0.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return should not name return type

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

docs: src/cellular/deploy.hpp:8: error: Compound Deployment is not documented.
2 participants