You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2017. It is now read-only.
For example in DGLE_RESULT DGLE_API CHDDFileIterator::FileName(char *pcName, uint &uiCharsCount)
succesfull part of method is if (strlen(_acName) < uiCharsCount) { strcpy(pcName, _acName); return S_OK; }
adding uiCharsCount = strlen(_acName) + 1;
makes it more convenient to interoperate
The text was updated successfully, but these errors were encountered:
For example in
DGLE_RESULT DGLE_API CHDDFileIterator::FileName(char *pcName, uint &uiCharsCount)
succesfull part of method is
if (strlen(_acName) < uiCharsCount) { strcpy(pcName, _acName); return S_OK; }
adding
uiCharsCount = strlen(_acName) + 1;
makes it more convenient to interoperate
The text was updated successfully, but these errors were encountered: