Skip to content

Commit

Permalink
doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
pruzko committed Mar 16, 2019
1 parent 8f31017 commit 6ba5a96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/fileformat/types/resource_table/resource_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ void ResourceTable::parseVersionInfoResources()
/**
* Parse version information
* @param bytes Resource bytes
* @raturn @c true if parsing was successful, @c false otherwise
* @return @c true if parsing was successful, @c false otherwise
*/
bool ResourceTable::parseVersionInfo(const std::vector<std::uint8_t> &bytes)
{
Expand Down Expand Up @@ -532,7 +532,7 @@ bool ResourceTable::parseVersionInfo(const std::vector<std::uint8_t> &bytes)
* Parse Version Info child
* @param bytes Resource bytes
* @param offset Offset to Version Info Child structure
* @raturn @c true if parsing was successful, @c false otherwise
* @return @c true if parsing was successful, @c false otherwise
*/
bool ResourceTable::parseVersionInfoChild(const std::vector<std::uint8_t> &bytes, std::size_t &offset)
{
Expand Down Expand Up @@ -589,7 +589,7 @@ bool ResourceTable::parseVersionInfoChild(const std::vector<std::uint8_t> &bytes
* Parse VarFileInfo structure
* @param bytes Resource bytes
* @param offset Offset to structure
* @raturn @c true if parsing was successful, @c false otherwise
* @return @c true if parsing was successful, @c false otherwise
*/
bool ResourceTable::parseVarFileInfoChild(const std::vector<std::uint8_t> &bytes, std::size_t &offset)
{
Expand Down Expand Up @@ -633,7 +633,7 @@ bool ResourceTable::parseVarFileInfoChild(const std::vector<std::uint8_t> &bytes
* Parse StringFileInfo child
* @param bytes Resource bytes
* @param offset Offset to structure
* @raturn @c true if parsing was successful, @c false otherwise
* @return @c true if parsing was successful, @c false otherwise
*/
bool ResourceTable::parseStringFileInfoChild(const std::vector<std::uint8_t> &bytes, std::size_t &offset)
{
Expand Down Expand Up @@ -675,7 +675,7 @@ bool ResourceTable::parseStringFileInfoChild(const std::vector<std::uint8_t> &by
* Parse var string
* @param bytes Resource bytes
* @param offset Offset to structure
* @raturn @c true if parsing was successful, @c false otherwise
* @return @c true if parsing was successful, @c false otherwise
*/
bool ResourceTable::parseVarString(const std::vector<std::uint8_t> &bytes, std::size_t &offset)
{
Expand Down
2 changes: 1 addition & 1 deletion src/fileformat/utils/other.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ std::string lcidToStr(std::size_t lcid)

/**
* Get string representation of IBM code page
* @param code page Language code id
* @param cpage Language code id
* @return String representation of @a code page
*/
std::string codePageToStr(std::size_t cpage)
Expand Down

0 comments on commit 6ba5a96

Please sign in to comment.