Click here to Skip to main content
15,891,253 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: computational cost of math functions Pin
Calin Negru18-Apr-20 8:56
Calin Negru18-Apr-20 8:56 
Questionmfc LoadBitmap hangs my application... Pin
charlieg15-Apr-20 12:21
charlieg15-Apr-20 12:21 
AnswerRe: mfc LoadBitmap hangs my application... Pin
_Flaviu16-Apr-20 1:37
_Flaviu16-Apr-20 1:37 
GeneralRe: mfc LoadBitmap hangs my application... Pin
charlieg16-Apr-20 4:30
charlieg16-Apr-20 4:30 
GeneralRe: mfc LoadBitmap hangs my application... Pin
_Flaviu16-Apr-20 5:24
_Flaviu16-Apr-20 5:24 
GeneralRe: mfc LoadBitmap hangs my application... Pin
leon de boer16-Apr-20 6:29
leon de boer16-Apr-20 6:29 
GeneralRe: mfc LoadBitmap hangs my application... Pin
_Flaviu16-Apr-20 7:21
_Flaviu16-Apr-20 7:21 
GeneralRe: mfc LoadBitmap hangs my application... Pin
charlieg16-Apr-20 9:47
charlieg16-Apr-20 9:47 
GeneralRe: mfc LoadBitmap hangs my application... Pin
charlieg16-Apr-20 10:27
charlieg16-Apr-20 10:27 
GeneralRe: mfc LoadBitmap hangs my application... Pin
leon de boer16-Apr-20 16:37
leon de boer16-Apr-20 16:37 
GeneralRe: mfc LoadBitmap hangs my application... Pin
charlieg17-Apr-20 9:43
charlieg17-Apr-20 9:43 
QuestionWindows CBT Hooks Pin
Richard Andrew x6414-Apr-20 11:58
professionalRichard Andrew x6414-Apr-20 11:58 
GeneralRe: Windows CBT Hooks Pin
Richard MacCutchan14-Apr-20 21:21
mveRichard MacCutchan14-Apr-20 21:21 
GeneralRe: Windows CBT Hooks Pin
Richard Andrew x6415-Apr-20 4:28
professionalRichard Andrew x6415-Apr-20 4:28 
GeneralRe: Windows CBT Hooks Pin
Richard MacCutchan15-Apr-20 4:57
mveRichard MacCutchan15-Apr-20 4:57 
GeneralRe: Windows CBT Hooks Pin
Richard Andrew x6415-Apr-20 5:49
professionalRichard Andrew x6415-Apr-20 5:49 
GeneralRe: Windows CBT Hooks Pin
Richard MacCutchan15-Apr-20 6:05
mveRichard MacCutchan15-Apr-20 6:05 
GeneralRe: Windows CBT Hooks Pin
Richard Andrew x6415-Apr-20 8:01
professionalRichard Andrew x6415-Apr-20 8:01 
GeneralRe: Windows CBT Hooks Pin
leon de boer16-Apr-20 0:21
leon de boer16-Apr-20 0:21 
GeneralRe: Windows CBT Hooks Pin
Richard Andrew x6416-Apr-20 2:53
professionalRichard Andrew x6416-Apr-20 2:53 
GeneralRe: Windows CBT Hooks Pin
leon de boer16-Apr-20 4:02
leon de boer16-Apr-20 4:02 
GeneralRe: Windows CBT Hooks Pin
Richard Andrew x6416-Apr-20 6:12
professionalRichard Andrew x6416-Apr-20 6:12 
GeneralRe: Windows CBT Hooks Pin
leon de boer16-Apr-20 6:25
leon de boer16-Apr-20 6:25 
QuestionAccessing HDD drive Pin
_Flaviu14-Apr-20 9:32
_Flaviu14-Apr-20 9:32 
How is the way to open a HDD drive with _open function in such a way to read even the boot section of this drive ? Here is the code:

int hd_h = _open(device, O_BINARY | O_RDWR | O_EXCL);


device is provided with
"\\\\?\\E:"


This is the code from ntfs library GitHub - vitalif/ntfs-3g: Fork of git://ntfs-3g.git.sourceforge.net/gitroot/ntfs-3g/ntfs-3g with FIEMAP support patch[^]

Why I am asking that ? Even if _open return 3, further more, the reading of boot section has failed.

Function
ntfs_boot_sector_is_ntfs
say that my boot device is not NTFS:

if (! ntfs_boot_sector_is_ntfs(bs))
{
    errno = EINVAL;
    goto error_exit;
}


BOOL ntfs_boot_sector_is_ntfs(NTFS_BOOT_SECTOR* b)
{
	u32 i;
	BOOL ret = FALSE;
	ntfs_log_debug("Beginning bootsector check.\n");

	ntfs_log_debug("Checking OEMid, NTFS signature.\n");
	if (b->oem_id != const_cpu_to_le64(0x202020205346544eULL))	// "NTFS    "
	{
		ntfs_log_error("NTFS signature is missing.\n");  // <--- my code run by here
		goto not_ntfs;
	}
....


Of course, this debugging session ran as admin mode.
GeneralRe: Accessing HDD drive Pin
Richard MacCutchan14-Apr-20 21:14
mveRichard MacCutchan14-Apr-20 21:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.