mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
14 lines
236 B
C++
14 lines
236 B
C++
#pragma once
|
|
|
|
#include "IGpColorCursor.h"
|
|
#include "GpWindows.h"
|
|
|
|
struct IGpColorCursor_Win32 : public IGpColorCursor
|
|
{
|
|
public:
|
|
virtual const HCURSOR &GetHCursor() const = 0;
|
|
|
|
virtual void IncRef() = 0;
|
|
virtual void DecRef() = 0;
|
|
};
|