You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
584 B
29 lines
584 B
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
// CleanDRM.h
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _CLEANDRM_H_
|
|
#define _CLEANDRM_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// CleanDRM
|
|
//
|
|
// szLogFile: Full path to file to log information to.
|
|
// Set to NULL to not log any information.
|
|
//
|
|
HRESULT __stdcall CleanDRM( LPCSTR szLogFile );
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _CLEANDRM_H_
|