-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathviewer.h
29 lines (26 loc) · 1.07 KB
/
viewer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//****************************************************************************
//
// Copyright (c) ALTAP, spol. s r.o. All rights reserved.
//
// This is a part of the Altap Salamander SDK library.
//
// The SDK is provided "AS IS" and without warranty of any kind and
// ALTAP EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING,
// BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE and NON-INFRINGEMENT.
//
//****************************************************************************
#pragma once
//
// CPluginInterfaceForViewer
//
class CPluginInterfaceForViewer:
public CPluginInterfaceForViewerAbstract
{
public:
BOOL WINAPI ViewFile(const char *name, int left, int top, int width, int height,
UINT showCmd, BOOL alwaysOnTop, BOOL returnLock, HANDLE *lock,
BOOL *lockOwner, CSalamanderPluginViewerData *viewerData,
int enumFilesSourceUID, int enumFilesCurrentIndex) override;
BOOL WINAPI CanViewFile(const char *name) override;
};