Skip to content

Instantly share code, notes, and snippets.

@bajtos
Created May 24, 2023 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bajtos/55774c4426f9e5e3628b9d82d2cbbdc5 to your computer and use it in GitHub Desktop.
Save bajtos/55774c4426f9e5e3628b9d82d2cbbdc5 to your computer and use it in GitHub Desktop.
/* Code generated by cmd/cgo; DO NOT EDIT. */
/* package main */
#line 1 "cgo-builtin-export-prolog"
#include <stddef.h>
#ifndef GO_CGO_EXPORT_PROLOGUE_H
#define GO_CGO_EXPORT_PROLOGUE_H
#ifndef GO_CGO_GOSTRING_TYPEDEF
typedef struct { const char *p; ptrdiff_t n; } _GoString_;
#endif
#endif
/* Start of preamble from import "C" comments. */
#line 10 "lassie-ffi.go"
#include <stdlib.h>
#include <stdint.h>
typedef struct {
const char* temp_dir;
uint16_t port;
size_t log_level;
} daemon_config_t;
typedef struct {
uint16_t port;
const char* error;
} daemon_init_result_t;
typedef struct {
const char * error;
} result_t;
#line 1 "cgo-generated-wrapper"
/* End of preamble from import "C" comments. */
/* Start of boilerplate cgo prologue. */
#line 1 "cgo-gcc-export-header-prolog"
#ifndef GO_CGO_PROLOGUE_H
#define GO_CGO_PROLOGUE_H
typedef signed char GoInt8;
typedef unsigned char GoUint8;
typedef short GoInt16;
typedef unsigned short GoUint16;
typedef int GoInt32;
typedef unsigned int GoUint32;
typedef long long GoInt64;
typedef unsigned long long GoUint64;
typedef GoInt64 GoInt;
typedef GoUint64 GoUint;
typedef size_t GoUintptr;
typedef float GoFloat32;
typedef double GoFloat64;
#ifdef _MSC_VER
#include <complex.h>
typedef _Fcomplex GoComplex64;
typedef _Dcomplex GoComplex128;
#else
typedef float _Complex GoComplex64;
typedef double _Complex GoComplex128;
#endif
/*
static assertion to make sure the file is being used on architecture
at least with matching size of GoInt.
*/
typedef char _check_for_64_bit_pointer_matching_GoInt[sizeof(void*)==64/8 ? 1:-1];
#ifndef GO_CGO_GOSTRING_TYPEDEF
typedef _GoString_ GoString;
#endif
typedef void *GoMap;
typedef void *GoChan;
typedef struct { void *t; void *v; } GoInterface;
typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
#endif
/* End of boilerplate cgo prologue. */
#ifdef __cplusplus
extern "C" {
#endif
// InitDaemon initializes Lassie HTTP daemon listening on localhost and returns the port number.
// The daemon is a singleton - there can be only one instance running in the host process.
//
// **Important:** This function does not run the request handler, you must call RunDaemon().
//
extern daemon_init_result_t InitDaemon(daemon_config_t* cfg);
// DropDaemonInitResult cleans up any resources allocated for and owned by the passed
// daemon_init_result_t value.
//
extern void DropDaemonInitResult(daemon_init_result_t* result);
// DropResult cleans up any resources allocated for and owned by the result_t value.
//
extern void DropResult(result_t* result);
// Run the daemon (the HTTP request handler). You should call this function from a dedicated
// OS-level thread.
//
// **Important:** This function does not exit until you call StopDaemon from a different thread.
//
extern result_t RunDaemon();
// CloseDaemon stops the Lassie HTTP daemon.
//
extern result_t StopDaemon();
#ifdef __cplusplus
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment