10 lines
203 B
C
10 lines
203 B
C
// Util.h : Header for utility functions used by control code
|
|
|
|
#ifndef __UTIL_H__
|
|
#define __UTIL_H__
|
|
|
|
HRESULT ReportError(DWORD dwErr);
|
|
HRESULT ReportError(HRESULT hr);
|
|
|
|
#endif /* __UTIL_H__ */
|