mirror of
https://github.com/Cc28256/CcRemote.git
synced 2025-06-09 05:49:50 +00:00
13 lines
155 B
C++
13 lines
155 B
C++
#pragma once
|
|
#ifndef MD5FILE_H
|
|
#define MD5FILE_H
|
|
|
|
#include <string>
|
|
#include "md5global.h"
|
|
|
|
std::string getFileMD5(const std::string& filename);
|
|
|
|
#endif
|
|
|
|
|