File: logtofile.h

package info (click to toggle)
pgauditlogtofile 1.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 244 kB
  • sloc: ansic: 918; makefile: 21; sql: 10; sh: 7
file content (18 lines) | stat: -rw-r--r-- 483 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*-------------------------------------------------------------------------
 *
 * logtofile.h
 *      Main entry point for logtofile
 *
 * Copyright (c) 2020-2024, Francisco Miguel Biete Banon
 *
 * This code is released under the PostgreSQL licence, as given at
 *  http://www.postgresql.org/about/licence/
 *-------------------------------------------------------------------------
 */
#ifndef _LOGTOFILE_H_
#define _LOGTOFILE_H_

void _PG_init(void);
void _PG_fini(void);

#endif