MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / IncOverlapped

Function IncOverlapped

libcppcryptfs/util/util.cpp:681–694  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

679}
680
681void IncOverlapped(LPOVERLAPPED pOv, DWORD increment)
682{
683 LARGE_INTEGER l;
684
685 l.LowPart = pOv->Offset;
686 l.HighPart = pOv->OffsetHigh;
687
688 l.QuadPart += increment;
689
690 memset(pOv, 0, sizeof(*pOv));
691
692 pOv->Offset = l.LowPart;
693 pOv->OffsetHigh = l.HighPart;
694}
695
696const wchar_t* get_command_line_usage()
697{

Callers 1

ReadMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected