Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
SVGImage: Fix forward declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
kasper93 committed Jan 22, 2017
1 parent 829790d commit 8fc9013
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/mpc-hc/SVGImage.h
@@ -1,5 +1,5 @@
/*
* (C) 2016 see Authors.txt
* (C) 2016-2017 see Authors.txt
*
* This file is part of MPC-HC.
*
Expand All @@ -20,10 +20,13 @@

#pragma once

class ATL::CImage;
namespace ATL
{
class CImage;
}

namespace SVGImage
{
HRESULT Load(LPCTSTR filename, CImage& image, float scale = 1.0f);
HRESULT Load(UINT uResId, CImage& image, float scale = 1.0f);
};
HRESULT Load(LPCTSTR filename, ATL::CImage& image, float scale = 1.0f);
HRESULT Load(UINT uResId, ATL::CImage& image, float scale = 1.0f);
}

0 comments on commit 8fc9013

Please sign in to comment.