MCPcopy Create free account
hub / github.com/HertzDevil/0CC-FamiTracker / WriteInt32

Method WriteInt32

Source/SimpleFile.cpp:78–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78void CSimpleFile::WriteInt32(int32_t Value)
79{
80 m_fFile.put(static_cast<unsigned char>(Value));
81 m_fFile.put(static_cast<unsigned char>(Value >> 8));
82 m_fFile.put(static_cast<unsigned char>(Value >> 16));
83 m_fFile.put(static_cast<unsigned char>(Value >> 24));
84}
85
86void CSimpleFile::WriteBytes(array_view<char> Buf)
87{

Callers 6

NSFEWriteBlockIdentFunction · 0.80
NSFEWriteBlocksFunction · 0.80
DoWriteToFTIMethod · 0.80
~COutputWaveStreamMethod · 0.80
WriteWAVHeaderMethod · 0.80
DoWriteSampleMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected