mirror of
https://github.com/x64dbg/x64dbg.git
synced 2024-11-27 06:40:24 +00:00
15 lines
514 B
C
15 lines
514 B
C
#ifndef _VALUE_H
|
|
#define _VALUE_H
|
|
|
|
#include "_global.h"
|
|
|
|
//functions
|
|
bool valuesignedcalc();
|
|
void valuesetsignedcalc(bool a);
|
|
bool valapifromstring(const char* name, uint* value, int* value_size, bool printall, bool silent, bool* hexonly);
|
|
bool valfromstring(const char* string, uint* value, int* value_size, bool* isvar, bool silent, bool* hexonly);
|
|
bool valflagfromstring(unsigned int eflags, const char* string);
|
|
bool valtostring(const char* string, uint* value, bool silent);
|
|
|
|
#endif // _VALUE_H
|