mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
15 lines
189 B
C
15 lines
189 B
C
|
#pragma once
|
||
|
|
||
|
#define W32_LEAN_AND_MEAN
|
||
|
#include <Windows.h>
|
||
|
|
||
|
#include "ICapture.h"
|
||
|
|
||
|
static class CaptureFactory
|
||
|
{
|
||
|
public:
|
||
|
static ICapture * GetCaptureDevice()
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
};
|