19 lines
192 B
C++
19 lines
192 B
C++
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
namespace AndroidNative {
|
|
|
|
namespace Debug {
|
|
|
|
long getNativeHeapSize();
|
|
|
|
long getNativeHeapAllocatedSize();
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
#endif // DEBUG_H
|