-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: main
Are you sure you want to change the base?
chore: added docs to deploy.hpp #138
Conversation
READ, /**< Read-only mode. */ | ||
WRITE, /**< Write-only mode. */ | ||
RDWR /**< Read-write mode. */ |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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
No description provided.