Skip to content

Commit 5304d40

Browse files
author
mtx48109
committed
formatting fix
1 parent a32bd06 commit 5304d40

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/data/oledb/cdynamicaccessor-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ bool GetValue(const WCHAR* pColumnName, ctype* pData) const throw();
387387

388388
#### Parameters
389389
*ctype*
390-
[in] A templated parameter that handles any data type except string types (**CHAR\***, **WCHAR\***), which require special handling. `GetValue` uses the appropriate data type based on what you specify here.
390+
[in] A templated parameter that handles any data type except string types (`CHAR*`, `WCHAR*`), which require special handling. `GetValue` uses the appropriate data type based on what you specify here.
391391

392392
*nColumn*
393393
[in] The column number. Column numbers start with 1. A value of 0 refers to the bookmark column, if any.
@@ -399,7 +399,7 @@ bool GetValue(const WCHAR* pColumnName, ctype* pData) const throw();
399399
[out] The pointer to the contents of the specified column.
400400

401401
### Return Value
402-
If you want to pass string data, use the nontemplated versions of `GetValue`. The nontemplated versions of this method return **void\***, which points to the part of the buffer that contains the specified column data. Returns NULL if the column is not found.
402+
If you want to pass string data, use the nontemplated versions of `GetValue`. The nontemplated versions of this method return `void*`, which points to the part of the buffer that contains the specified column data. Returns NULL if the column is not found.
403403

404404
For all other data types, it is simpler to use the templated versions of `GetValue`. The templated versions return **true** on success or **false** on failure.
405405

@@ -532,7 +532,7 @@ bool SetValue(
532532
533533
#### Parameters
534534
*ctype*
535-
[in] A templated parameter that handles any data type except string types (**CHAR\***, **WCHAR\***), which require special handling. `GetValue` uses the appropriate data type based on what you specify here.
535+
[in] A templated parameter that handles any data type except string types (`CHAR*`, `WCHAR*`), which require special handling. `GetValue` uses the appropriate data type based on what you specify here.
536536
537537
*pColumnName*
538538
[in] A pointer to a character string containing the column name.
@@ -544,7 +544,7 @@ bool SetValue(
544544
[in] The column number. Column numbers start with 1. A value of 0 refers to the bookmark column, if any.
545545
546546
### Return Value
547-
If you want to set string data, use the nontemplated versions of `GetValue`. The nontemplated versions of this method return **void\***, which points to the part of the buffer that contains the specified column data. Returns NULL if the column is not found.
547+
If you want to set string data, use the nontemplated versions of `GetValue`. The nontemplated versions of this method return `void*`, which points to the part of the buffer that contains the specified column data. Returns NULL if the column is not found.
548548
549549
For all other data types, it is simpler to use the templated versions of `GetValue`. The templated versions return **true** on success or **false** on failure.
550550

0 commit comments

Comments
 (0)