]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Common header file change not directly applicable to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Tue, 19 Feb 2019 20:51:31 +0000 (12:51 -0800)
committerOliver Kurth <okurth@vmware.com>
Tue, 19 Feb 2019 20:51:31 +0000 (12:51 -0800)
open-vm-tools/lib/include/capsProvider.h

index 824395e2386ed2385fce1165383697b263c7b31a..71b779d5aca3428d8b20aa4fd45a3693e4389fdc 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 2010-2016 VMware, Inc. All rights reserved.
+ * Copyright (C) 2010-2019 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -44,6 +44,7 @@ class LIB_EXPORT CapsProvider
 public:
    virtual ~CapsProvider() {};
    virtual Bool CheckCapability(uint32 caps) = 0;
+   virtual uint64 GetDnDSizeThreshold() { return 0; } // 0 means no size control
 };
 
 #endif