Skip to content
Snippets Groups Projects
Commit a43b3bf5 authored by Andreas Moser's avatar Andreas Moser
Browse files

Fixing some typos.

parent 507ca6ff
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class TskAutoDb:public TskAuto {
* Sets whether or not the file systems for an image should be added when
* the image is added to the case database. The default value is true.
*/
void setAddFileSystems(bool addFileSytems);
void setAddFileSystems(bool addFileSystems);
/**
* Skip processing of orphans on FAT filesystems.
......
......@@ -8,7 +8,7 @@ This section describes the general disk image analysis concepts and correspondin
The tsk_img_open() function returns a TSK_IMG_INFO structure. This structure has fields that contain the type and size (uncompressed, if applicable) of the disk image. When you are done analyzing the disk image, it can be closed with tsk_img_close().
Note that the tsk_img_open() and tsk_img_open_sing() functions use the TSK_TCHAR type to store the disk image paths. This type is system dependent and is a wchar_t on Windows and char on other sytems. See \ref basic_enc_t for more details. If you are in an environment where you will have UTF-8 text even in Windows, then you can use the tsk_img_open_utf8() and tsk_img_open_utf8_sing() functions.
Note that the tsk_img_open() and tsk_img_open_sing() functions use the TSK_TCHAR type to store the disk image paths. This type is system dependent and is a wchar_t on Windows and char on other systems. See \ref basic_enc_t for more details. If you are in an environment where you will have UTF-8 text even in Windows, then you can use the tsk_img_open_utf8() and tsk_img_open_utf8_sing() functions.
To use the C++ wrappers, create a TskImgInfo object and call one of the TskImgInfo::open() methods.
......
......@@ -19,7 +19,7 @@
#ifdef __cplusplus
extern "C" {
#endif
TSK_RETVAL_ENUM tsk_img_writer_create(TSK_IMG_INFO* img_info, const TSK_TCHAR * outputPath);
TSK_RETVAL_ENUM tsk_img_writer_create(TSK_IMG_INFO* img_info, const TSK_TCHAR * outputFileName);
enum IMG_WRITER_BLOCK_STATUS_ENUM {
IMG_WRITER_BLOCK_STATUS_UNALLOC = 0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment