summaryrefslogtreecommitdiffstats
path: root/ppapi/c/private/ppb_flash_print.h
blob: 9eeb62030d6faea3d029169ab18b5aed913d78d1 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* From private/ppb_flash_print.idl modified Tue Apr 24 16:55:10 2012. */

#ifndef PPAPI_C_PRIVATE_PPB_FLASH_PRINT_H_
#define PPAPI_C_PRIVATE_PPB_FLASH_PRINT_H_

#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_macros.h"
#include "ppapi/c/pp_stdint.h"

#define PPB_FLASH_PRINT_INTERFACE_1_0 "PPB_Flash_Print;1.0"
#define PPB_FLASH_PRINT_INTERFACE PPB_FLASH_PRINT_INTERFACE_1_0

/**
 * @file
 * This file contains the <code>PPB_Flash_Print</code> interface.
 */


/**
 * @addtogroup Interfaces
 * @{
 */
/**
 * The <code>PPB_Flash_Print</code> interface contains Flash-specific printing
 * functionality.
 */
struct PPB_Flash_Print_1_0 {
  /**
   * Invokes printing on the given plugin instance.
   */
  void (*InvokePrinting)(PP_Instance instance);
};

typedef struct PPB_Flash_Print_1_0 PPB_Flash_Print;
/**
 * @}
 */

#endif  /* PPAPI_C_PRIVATE_PPB_FLASH_PRINT_H_ */