mirror of
https://github.com/holub/mame
synced 2025-05-08 23:31:54 +03:00
13 lines
282 B
C
13 lines
282 B
C
// PropIDUtils.h
|
|
|
|
#ifndef __PROPID_UTILS_H
|
|
#define __PROPID_UTILS_H
|
|
|
|
#include "Common/MyString.h"
|
|
#include "Common/Types.h"
|
|
|
|
void ConvertUInt32ToHex(UInt32 value, wchar_t *s);
|
|
UString ConvertPropertyToString(const PROPVARIANT &propVariant, PROPID propID, bool full = true);
|
|
|
|
#endif
|