9 lines
192 B
C
9 lines
192 B
C
#pragma once
|
|
|
|
// Recovered PDB signatures:
|
|
// ?InterleaveBits@@YAHHH@Z
|
|
// ?DeInterleaveBits@@YAXHAAH0@Z
|
|
int InterleaveBits(int x, int y);
|
|
void DeInterleaveBits(int bits, int& x, int& y);
|
|
|