mirror of
https://github.com/HandsomeMod/gc.git
synced 2026-01-20 10:37:23 +01:00
23 lines
584 B
C
23 lines
584 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2021-2022 HandsomeMod Project
|
|
*
|
|
* Handsomeyingyan <handsomeyingyan@gmail.com>
|
|
*
|
|
* GC(Gadget Controller) is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef GC_PRINTER_H
|
|
#define GC_PRINTER_H
|
|
|
|
#include "gc_generic.h"
|
|
|
|
int gc_printer_create(int argc,char *argv[],gc_generic_info info);
|
|
|
|
#endif //GC_GC_PRINTER_H
|