repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
snmsts/xyzzy | src/string.h | <reponame>snmsts/xyzzy
// -*-C++-*-
#ifndef _string_h_
# define _string_h_
/* string */
# include "array.h"
# define MAX_STRING_LENGTH (INT_MAX / sizeof (Char))
class lsimple_string: public lbase_vector
{
};
class lcomplex_string: public lbase_complex_vector
{
};
# define stringp(X) \
object_type_mask_p ((X), T... |
snmsts/xyzzy | src/trace.h | <gh_stars>10-100
#ifndef _trace_h_
# define _trace_h_
struct stack_trace
{
enum
{
empty,
special_form,
macro,
apply,
eval_args
};
static stack_trace *stp;
stack_trace *last;
int type;
lisp fn;
lisp args[2];
stack_trace ();
stack_trace (int, lisp, lisp);
stack_tr... |
snmsts/xyzzy | src/structure.h | <reponame>snmsts/xyzzy
#ifndef _structure_h_
# define _structure_h_
struct struct_slotdesc
{
lisp name;
lisp default_init;
lisp type;
lisp read_only;
lisp offset;
};
class lstruct_def: public lisp_object
{
public:
lisp name;
lisp type;
lisp includes;
lisp constructors;
lisp print_function;
lisp ... |
snmsts/xyzzy | src/cons.h | <reponame>snmsts/xyzzy
// -*-C++-*-
#ifndef _cons_h_
# define _cons_h_
class lcons: public lisp_object
{
public:
lisp car;
lisp cdr;
};
# define consp(X) typep ((X), Tcons)
# define listp(X) ((X) == Qnil || consp (X))
inline void
check_cons (lisp x)
{
check_type (x, Tcons, Qcons);
}
inline lisp &
xcar (lisp x... |
snmsts/xyzzy | src/endian.h | <gh_stars>10-100
/* $NetBSD: endian.h,v 1.28 2009/08/08 21:23:15 christos Exp $ */
/*
* Copyright (c) 1987, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followi... |
snmsts/xyzzy | src/wstream.h | <gh_stars>10-100
#ifndef _wstream_h_
# define _wstream_h_
# include "StrBuf.h"
class wStream: public StrBuf
{
char buf[2040];
int col;
void update_column (Char);
void update_column (Char, int);
void update_column (const Char *, int);
public:
wStream (int = 0);
void add (int);
void add (Char);
void f... |
snmsts/xyzzy | src/dialogs.h | <gh_stars>10-100
#ifndef _DIALOGS_H_
# define _DIALOGS_H_
class IdleDialog
{
private:
enum {IE_ALIVE, IE_DEAD, IE_DELETE};
int id_end;
int id_result;
int id_idle;
int id_modeless;
const int id_auto_delete;
int id_wndproc_depth;
void process ();
public:
HWND id_hwnd;
protected:
IdleDialog (int = ... |
snmsts/xyzzy | src/thread.h | <reponame>snmsts/xyzzy<gh_stars>10-100
#ifndef _thread_h_
#define _thread_h_
class worker_thread
{
private:
HANDLE w_hthread;
HANDLE w_hlock_event;
HANDLE w_hterm_event;
int w_intr;
protected:
virtual void thread_main () = 0;
int interrupted () const {return w_intr;}
worker_thread ();
virtual ~worker_t... |
snmsts/xyzzy | src/msgbox.h | <filename>src/msgbox.h
#ifndef _msgbox_h_
# define _msgbox_h_
class XMessageBox
{
public:
enum {MAX_BUTTONS = 5};
enum
{
IDBUTTON1 = 1000,
IDBUTTON2,
IDBUTTON3,
IDBUTTON4,
IDBUTTON5,
};
protected:
HINSTANCE hinst;
const char *msg;
const char *title;
HFONT hfont;
HICO... |
snmsts/xyzzy | src/xyzzycli.h | #ifndef _XYZZY_CLIENT_H_
# define _XYZZY_CLIENT_H_
# define IDS_CONNECT_FAILED 1
# define IDS_CALL_PROCESS 2
# define IDS_NO_MEMORY 3
# define IDS_CREATE_THREAD 4
# define IDS_READ_FAILED 5
#endif
|
snmsts/xyzzy | src/list.h | #ifndef _list_h_
# define _list_h_
inline lisp Fcaar (lisp x) {return Fcar (Fcar (x));}
inline lisp Fcadr (lisp x) {return Fcar (Fcdr (x));}
inline lisp Fcdar (lisp x) {return Fcdr (Fcar (x));}
inline lisp Fcddr (lisp x) {return Fcdr (Fcdr (x));}
inline lisp Fcaaar (lisp x) {return Fcar (Fcar (Fcar (x)));}
inline lisp... |
snmsts/xyzzy | src/buffer-bar.h | <filename>src/buffer-bar.h
#ifndef _buffer_bar_h_
#define _buffer_bar_h_
#include "dockbar.h"
#include "DnD.h"
class buffer_bar: public tab_bar
{
private:
static buffer_bar *b_bar;
static Buffer *b_last_buffer;
buffer_bar_drop_target b_drop_target;
int b_drop_index;
enum {DROP_TIMER_ID = 10};
buffer_bar ... |
snmsts/xyzzy | src/ldialog.h | <reponame>snmsts/xyzzy
#ifndef _ldialog_h_
# define _ldialog_h_
class dlgctrl: public lisp_object
{
public:
int id () const;
lisp symid () const;
lisp wclass () const;
DWORD style () const;
lisp keyword () const;
};
inline int
dlgctrl::id () const
{
return xshort_int_value (xcar (lisp (this)));
}
inline ... |
snmsts/xyzzy | src/hash.h | <reponame>snmsts/xyzzy
// -*-C++-*-
#ifndef _hash_h_
# define _hash_h_
/* hash table */
typedef lfunction_proc_2 hash_test_proc;
struct hash_entry
{
lisp key;
lisp value;
};
# define MAX_HASH_TABLE_SIZE (INT_MAX / sizeof (hash_entry))
class lhash_table: public lisp_object
{
public:
hash_test_proc test;
int... |
snmsts/xyzzy | src/ChooseFont.h | #ifndef _ChooseFont_h_
#define _ChooseFont_h_
class ChooseFontP
{
protected:
int cf_dpi;
HIMAGELIST cf_hil;
public:
FontSetParam cf_param;
COLORREF cf_fg, cf_bg;
protected:
struct xdpi
{
int dpi;
int pixel;
HWND hwnd;
};
static int CALLBACK enum_font_name_proc (ENUMLOGFONT *, N... |
snmsts/xyzzy | src/wm.h | #ifndef _wm_h_
# define _wm_h_
enum
{
WM_PRIVATE_SETFOCUS = WM_USER,
WM_PRIVATE_KILLFOCUS,
WM_PRIVATE_ACTIVATEAPP,
WM_PRIVATE_DELETE_WINDOW,
WM_PRIVATE_QUIT,
WM_PRIVATE_INITDONE,
WM_PRIVATE_PROCESS_OUTPUT,
WM_PRIVATE_PROCESS_TERMINATE,
WM_PRIVATE_DELAYED_ACTIVATE,
WM_PRIVATE_FILER_SHOW_MARKS,
WM_... |
snmsts/xyzzy | src/lucida-width.h | #define LUCIDA_BASE_HEIGHT 128
#define LUCIDA_FACE_NAME "Lucida Sans Unicode"
#define LUCIDA_SPACING 6
struct lucida_spacing {char a; u_char b;};
#define LUCIDA_OFFSET(C) \
(-lucida_spacing_table[(C)].a - lucida_spacing_table[(C)].b / 2)
#ifdef DEFINE_LUCIDA_OFFSET_TABLE
lucida_spacing lucida_spacing_table[] =
{
{... |
Pirata156/Operating-Systems | Guiao05/03_wcwhatthefathersaid.c | <filename>Guiao05/03_wcwhatthefathersaid.c
/**
* Programa que executa o comando wc num processo filho. O processo pai deve enviar
* ao filho atravéx dum pipe anónimo uma sequência de linhas de texto introduzidas pelo
* utilizador no stdin.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#includ... |
Pirata156/Operating-Systems | Guiao05/02_continuouschatting.c | <gh_stars>1-10
/**
* Modificação do exercicio anterior de modo a ler continuamente até um EOF ser lido no descritor do pipe.
*
* Tomar em conta que só acontece quando ambos os processos têm o descritor de excrita no pipe fechado.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#include <sys/wa... |
Pirata156/Operating-Systems | Guiao03/03_myarguments.c | /**
* Programa que imprime a lista de argumentos recebida na linha de comando.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <stdio.h>
int main (int argc, char ** argv)
{
int i = 0;
printf("Value of argc = %d\n", argc);
printf("Listing the arguments:\n");
do {
/* There's always at least 1 argumen... |
Pirata156/Operating-Systems | Guiao05/01_connectedfamily.c | /**
* Programa que cria um pipe anonimo e um processo filho.
* Procede a comunicações entre pai e filho em ambos os sentidos, com ou sem delay.
*
* Tomar em atenção que o filho recebe os descritores de ficheiros do pai, e ao se
* executar um fork() após a criação de um pipe(), o pipe fica com ambos os processos
*... |
Pirata156/Operating-Systems | Guiao02/07_firingrange.c | <filename>Guiao02/07_firingrange.c<gh_stars>1-10
/**
* Programa similar ao anterior, mas que neste caso procura quais linhas numa matriz aleatória têm um certo
* valor, passado como argumento, usando processos. No fim deve imprimir por ordem crescente as linhas onde
* esse valor aparece.
*
* @author (Pirata)
* @v... |
Pirata156/Operating-Systems | Guiao03/auxiliar.c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char** argv)
{
int res;
srandom(time(NULL));
res = random() % 3;
printf("%s: %d\n", argv[0], res);
return res;
}
|
Pirata156/Operating-Systems | Guiao01/mycat-v1.c | <filename>Guiao01/mycat-v1.c<gh_stars>1-10
/**
* Funcionamento similar ao cat pré-definido da bash mas que apenas lê do input, carácter a carácter e escreve no output.
* Control+D = EOF do standard input.
*
* @author (Pirata)
* @version (2018.02)
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
i... |
Pirata156/Operating-Systems | Guiao03/mysystem.h | /** mysystem.h
* Ficheiro header da função mysystem, representando uma versão simplificada da função system().
* Ao contrário da função original não suporta redireccionamento ou composição/encadeamento
* de programas executáveis.
*
* @author (Pirata)
* @version (2018.06)
*/
#ifndef _SO_MYSYSTEM_
#define _SO_MYS... |
Pirata156/Operating-Systems | Guiao04/01_basicpasswd.c | /**
* Comando para redirecionar os descritores standard para outors ficheiros. O input para o ficheiro
* /etc/passwd, o output para o ficheiro saidas.txt e o error para o ficheiro erros.txt.
* Usar diversos pares de funções de leitura e escrita para perceber que todas tem o seu descritor redefinido.
*
* @author (... |
Pirata156/Operating-Systems | Guiao04/readln_v1.h | /** Função de leitura de uma linha.
* Funcionamento compatível com a chamada ao sistema read()
* Nesta versão, lê apenas um carater de cada vez.
*
* @author (Pirata)
* @version (2018.02)
*/
#ifndef _SO_READLN_V1_
#define _SO_READLN_V1_
#include <unistd.h>
ssize_t readln_v1(int fildes, void *buf, size_t nbyte... |
Pirata156/Operating-Systems | Guiao01/10mb.c | /**
* Cria um ficheiro com 10Mb de tamanho que recebe o nome do ficheiro como argumento.
* Como conteúdo, são 10Mb apenas com a letra 'a'.
*
* @author (Pirata)
* @version (2018.02)
*/
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#define DEZMEGA 10*1024*1024
int main(int argc,... |
Pirata156/Operating-Systems | Guiao03/04_myexec.c | <reponame>Pirata156/Operating-Systems
/**
* Programa que executa o comando da questao anterior com uma qualquer lista de argumentos.
* Executar mantendo e alterando o argv[0]. O nome do ficheiro.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
#define N... |
Pirata156/Operating-Systems | Guiao05/04_chainthatstuff.c | /**
* Programa que emula o funcionamento do interpretador de comandos na execucao
* encadeada de 'ls /etc | wc -l'.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#include <sys/wait.h>
#include <stdlib.h>
int main (int argc, char** argv)
{
pid_t pid1, pid2;
int err, pipe_desc[2];
/* pipe de... |
Pirata156/Operating-Systems | Guiao01/mycat-v2.c | /**
* Funcionamento similar ao cat pré-definido da bash mas que apenas lê do standard input, com bloco de N bytes, e escreve no standard output.
* Como argumento recebe apenas o tamanho do bloco N.
*
* @author (Pirata)
* @version (2018.02)
*/
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
#include ... |
Pirata156/Operating-Systems | Guiao04/03_wcgonesomewhere.c | <gh_stars>1-10
/**
* Alteração do primeiro exercicio mas onde seja chamado o comando wc sem argumentos após
* o redirecionamento dos descritores de entrada e saída. Pretende-se provar que a system call
* exec() mantém as alterações dos descritores de ficheiros do processo que a chama.
* Possibilidade de executar co... |
Pirata156/Operating-Systems | Guiao03/06_my_system.c | <gh_stars>1-10
/**
* Programa para testar a função mysystem() criada por nós.
* Função mysystem definida nos ficheiros mysystem.h e mysystem.c
*
* @author (Pirata)
* @version (2018.06)
*/
#include <stdio.h>
#include "mysystem.h"
#define COMMAND "ls -la"
int main()
{
int res;
res = mysystem(COMMAND);
printf(... |
Pirata156/Operating-Systems | Guiao02/05_onechildeach.c | /**
* Programa que cria uma descendência em profundidade de dez processos. Cada filho cria outro filho.
* Cada processo imprime o seu identificador e o do seu parente. O pai fica a espera de o filho terminar a sua execução
* antes de ele próprio imprimir os identificadores.
*
* @author (Pirata)
* @version (2018.0... |
Pirata156/Operating-Systems | Guiao03/07_mybash.c | /**
* Interpretador de comandos simples inspirado na bash.
* Executa comandos especificados numa linha de texto do utilizador.
* Comandos: <programa> [argumentos]
*
* & - Executa em plano de fundo se a linha acabar com &.
* exit || Ctrl+D - termina execução do interpretador.
*
* @author (Pirata)
* @version (2... |
Pirata156/Operating-Systems | Guiao02/01_whosmyfather.c | <gh_stars>1-10
/**
* Programa que imprime o seu identificador e o do seu pai.
* Comprovar usando o comando "ps" no terminal que o pai do processo é o interpretador de comandos (bash)
* usado para o executar.
*
* @author (Pirata)
* @version (2018.05)
*/
#include <unistd.h>
#include <stdio.h>
int main()
{
prin... |
Pirata156/Operating-Systems | Guiao04/readln_v1.c | #include "readln_v1.h"
#include <stdlib.h>
ssize_t readln_v1(int fildes, void *buf, size_t nbyte)
{
size_t i = 0;
ssize_t n = 1;
char c = ' ';
/* Enquanto está a ler algo mas que seja menos de nbyte caracteres, e não seja o '\n' */
while ((i < nbyte) && (n > 0) && (c != '\n')) {
//Lê um caractere
n = read(f... |
Pirata156/Operating-Systems | Guiao04/04_fromheretothere.c | <reponame>Pirata156/Operating-Systems<filename>Guiao04/04_fromheretothere.c
/**
* Programa 'redir' que permita executar um comando, opcionalmente redirecionando a
* entrada e/ou a saida:
* redir [-i <inputfile>] [-o <outputfile>] <command> [arg1] [arg2] [...
*
* @author (Pirata)
* @version (2018.02)
*/
#incl... |
Pirata156/Operating-Systems | Guiao04/11_mybash_v2.c | /**
* Interpretador de comandos simples inspirado na bash.
* Executa comandos especificados numa linha de texto do utilizador.
* Comandos: <programa> [argumentos]
*
* & - Executa em plano de fundo se a linha acabar com &.
* exit || Ctrl+D - termina execução do interpretador.
*
* Considera os operadores de redi... |
Pirata156/Operating-Systems | Guiao02/04_likeasoccerteam.c | /**
* Programa que cria 10 processos filhos que executam concorrentemente.
* O pai depois espera pelo fim da execução dos filhos, imprimindo os respetivos
* códigos de saida.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
#define NROFCHILDREN 10
int ... |
Pirata156/Operating-Systems | Guiao03/01_listthemall.c | /**
* Programa que executa o comando ls -l.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
int main()
{
/* execl used because we know all the arguments and how many there are
* required to always have NULL as last argument */
execlp("ls","ls","-l",NULL);
/* code after the exec system cal... |
Pirata156/Operating-Systems | Guiao03/05_gottaexecthemall.c | /**
* Programa que executa concorrentemente uma lista de executáveis passados como argumento
* na linha de comando. Sem argumentos próprios. Esperar pela execução deles todos.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
int main(int argc, char** argv... |
Pirata156/Operating-Systems | Guiao01/nl_v1.c | <reponame>Pirata156/Operating-Systems<filename>Guiao01/nl_v1.c<gh_stars>1-10
/**
* Funcionamento similar ao nl pré-definido da bash usando o readln. Repete linha a linha o standard input ou
* o conteúdo de um ficheiro especificado como argumento.
* Cada linha é numerada sequencialmente.
*
* @author (Pirata)
*... |
Pirata156/Operating-Systems | Guiao02/02_imyourfather.c | /**
* Programa que cria um processo filho. Ambos imprimem os próprios identificadores e dos pais.
* Em casos normais o pai espera pelo filho executar antes dele executar.
* O filho fica zombie quando já acabou de executar mas o pai ainda não fez wait().
* No caso de o pai terminar primeiro, o filho fica orfao.
* F... |
Pirata156/Operating-Systems | Guiao03/11_controlador_v2.c | /**
* Programa controlador que execute concorrentemente um conjunto de programas
* especificados como argumento da linha de comandos. O controlador deverá
* re-executar cada programa enquanto não terminar com código de saída nulo.
* No fim deverá imprimir o número de vezes que cada programa foi executado.
* Os pro... |
Pirata156/Operating-Systems | Guiao03/11_controlador_v1.c | /**
* Programa controlador que execute concorrentemente um conjunto de programas
* especificados como argumento da linha de comandos. O controlador deverá
* re-executar cada programa enquanto não terminar com código de saída nulo.
* No fim deverá imprimir o número de vezes que cada programa foi executado.
* Os pro... |
Pirata156/Operating-Systems | Guiao02/06_whackamole.c | <filename>Guiao02/06_whackamole.c
/**
* Programa que determina a existência de um determinado número inteiro nas linhas de uma matriz de
* números inteiros. Implementado usando processos para correr as linhas a em busca de um determinado
* valor recebido como argumento.
* Matriz é gerada aleatoriamente.
*
* @auth... |
Pirata156/Operating-Systems | Guiao05/05_trainofstuff.c | /**
* Programa que emula o funcionamento do interpretador de comandos na execucao
* encadeada de 'grep -v ^# /etc/passwd | cut -f7 -d: | uniq | wc -l'.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <stdio.h>
#define COMMAND_LINE {{"grep", "-v... |
Pirata156/Operating-Systems | Guiao02/03_oneaftertheother.c | /**
* Programa que cria 10 processos filhos que executam sequencialmente (o filho seguinte só é criado
* depois do anterior acabar a execução).
* Os filhos imprimem os identificadores e terminam execução com um valor de saída igual ao número
* de ordem que foram criados.
*
* @author (Pirata)
* @version (2018.06)... |
Pirata156/Operating-Systems | Guiao03/02_listthemslave.c | <reponame>Pirata156/Operating-Systems
/**
* Programa que executa o comando ls -l usando um processo filho.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
int main()
{
pid_t pid; // same as int
pid = fork();
if (pid < 0) {
perror("fork failed");
... |
Pirata156/Operating-Systems | Guiao00/guiao00.c | /**
* Guião 00 de Sistemmas Operativos.
*
* @author (PIRATA)
* @version (2018.02)
*/
#include <stdio.h>
#include <stdlib.h>
#define MAX_SIZE 65536
struct intv {
int priml;
int llivres;
struct intv* next;
};
/* Exercicios 3.1 e 4 */
/** @brief Reserva um determinado número de lugares
*
* Função que reserva... |
Pirata156/Operating-Systems | Guiao03/mysystem.c | <gh_stars>1-10
/** mysystem.c
* Ficheiro implementação da função mysystem, representando uma versão simplificada da função system().
* Ao contrário da função original não suporta redireccionamento ou composição/encadeamento
* de programas executáveis.
*
* @author (Pirata)
* @version (2018.06)
*/
#include <unist... |
homonovus/gm_razer | include/GarrysMod/Lua/Interface.h | <reponame>homonovus/gm_razer<filename>include/GarrysMod/Lua/Interface.h
#ifndef GARRYSMOD_LUA_INTERFACE_H
#define GARRYSMOD_LUA_INTERFACE_H
#include "LuaBase.h"
struct lua_State
{
unsigned char _ignore_this_common_lua_header_[69];
GarrysMod::Lua::ILuaBase* luabase;
};
#ifndef GMOD
#ifdef _WIN... |
RathaKrishna/RKAutoHeightTableViewCell | RKAutoHeightTableViewCell/View/AutoHeightTableViewCell.h | //
// AutoHeightTableViewCell.h
// RKAutoHeightTableViewCell
//
// Created by mac on 21/08/18.
// Copyright © 2018 Rathakrishnan. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AutoHeightTableViewCell : UITableViewCell
@property (nonatomic, strong) UIButton *iconView;
@property (nonatomic, strong) UI... |
tomzox/nxtvepg | epgui/pilistbox.c | /*
* Nextview GUI: PI listbox
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* license in the fil... |
tomzox/nxtvepg | epgctl/epgacqctl.c | <gh_stars>0
/*
* Acquisition main control
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* licens... |
tomzox/nxtvepg | epgdb/epgdbmgmt.h | /*
* Nextview EPG block database management
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* lice... |
tomzox/nxtvepg | epgui/dumpxml.h | <reponame>tomzox/nxtvepg<filename>epgui/dumpxml.h
/*
* Nextview GUI: Output of PI data in HTML and XML
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the... |
tomzox/nxtvepg | tvsim/tvsim_main.c | /*
* TV application interaction simulator for nxtvepg
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of thi... |
tomzox/nxtvepg | epgdb/epgtscqueue.h | <filename>epgdb/epgtscqueue.h
/*
* Nextview EPG PI timescale queue
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find ... |
tomzox/nxtvepg | epgui/statswin.c | <reponame>tomzox/nxtvepg<filename>epgui/statswin.c<gh_stars>0
/*
* Nextview EPG GUI: Database statistics and main window status line
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Ver... |
tomzox/nxtvepg | epgui/wintvui.c | <gh_stars>0
/*
* Tcl interface and helper functions to TV app configuration
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. ... |
tomzox/nxtvepg | epgui/uictrl.h | /*
* General GUI housekeeping
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* license in the fil... |
tomzox/nxtvepg | epgui/loadtcl.c | /*
* Load Tcl/Tk scripts into the interpreter
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* li... |
tomzox/nxtvepg | epgvbi/zvbidecoder.h | <filename>epgvbi/zvbidecoder.h
/*
* libzvbi - Raw vbi decoder
*
* Copyright (C) 2000, 2001, 2002 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This progra... |
tomzox/nxtvepg | tvsim/tvsim_version.h | /*
* Software version of the TV application interaction debugging tools
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You ... |
tomzox/nxtvepg | epgui/uictrl.c | <filename>epgui/uictrl.c<gh_stars>0
/*
* General GUI housekeeping
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a... |
tomzox/nxtvepg | epgdb/epgdbmerge.h | /*
* Nextview EPG database merging
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* license in th... |
tomzox/nxtvepg | epgvbi/dvb_demux.c | /*
* libzvbi -- DVB VBI demultiplexer
*
* Copyright (C) 2004, 2006, 2007 <NAME>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at ... |
tomzox/nxtvepg | xmltv/xmltv_cni.c | /*
* XMLTV provider and network ID mapping
*
* Copyright (C) 2007-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* licen... |
tomzox/nxtvepg | epgvbi/tvchan.c | /*
* Tuner channel to frequency translation
*
* The tables in this modules were extracted from xtvscreen 0.5.22,
* which is (was) part of the bttv driver package for Linux.
* Copyright (C) 1996,97 <NAME> (<EMAIL>)
* & <NAME> (<EMAIL>)
* Updated from xawtv-3.21,
* Copyrigh... |
tomzox/nxtvepg | epgttx/ttx_ov_fmt.h | <filename>epgttx/ttx_ov_fmt.h<gh_stars>0
/*
* Teletext EPG grabber: Overview list format parser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
... |
tomzox/nxtvepg | tvsim/vbiplay.c | <gh_stars>0
/*
* EPG teletext packet playback for debugging purposes
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You fin... |
tomzox/nxtvepg | epgui/dumptext.c | /*
* Export Nextview database as "TAB-separated" text file
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy o... |
tomzox/nxtvepg | epgui/pibox.c | /*
* Nextview GUI: programme list meta module
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* li... |
tomzox/nxtvepg | epgui/dumpxml.c | <filename>epgui/dumpxml.c
/*
* Export Nextview database in XMLTV format
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You ... |
tomzox/nxtvepg | xmltv/xml_prolog.tab.h | /* A Bison parser, made by GNU Bison 3.5.1. */
/* Bison interface for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation,
Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as pub... |
tomzox/nxtvepg | xmltv/xmltv_main.h | /*
* XMLTV main module
*
* Copyright (C) 2007-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* license in the file COPYR... |
tomzox/nxtvepg | epgvbi/dvb_scan_desc.h | <gh_stars>0
/*
* Simple MPEG/DVB parser to achieve network/service information without initial tuning data
*
* Copyright (C) 2006, 2007, 2008, 2009 <NAME>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Sof... |
tomzox/nxtvepg | epgui/piremind.h | /*
* Nextview GUI: Reminder interface to database
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
*... |
tomzox/nxtvepg | epgctl/epgacqclnt.c | /*
* Nextview EPG network acquisition client
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* lic... |
tomzox/nxtvepg | epgdb/epgtscqueue.c | <reponame>tomzox/nxtvepg
/*
* Nextview EPG PI timescale queue
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a cop... |
tomzox/nxtvepg | xmltv/xml_hash.c | /*
* Helper module implementing a hash array for strings
*
* Copyright (C) 2007-2008 <NAME>
*
* Principles derived from tcl 8.4.9 (tclHash.c,v 1.12.2.1 2004/11/11):
* Copyright (c) 1991-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*
* This program is f... |
tomzox/nxtvepg | epgui/dumphtml.h | <reponame>tomzox/nxtvepg
/*
* Nextview GUI: Output of programme data in XML
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. ... |
tomzox/nxtvepg | epgctl/epgacqttx.c | <reponame>tomzox/nxtvepg
/*
* Teletext EPG acquisition control
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a co... |
tomzox/nxtvepg | epgctl/epgscan.h | /*
* Scan TV channels for Nextview EPG content providers
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of ... |
tomzox/nxtvepg | epgui/daemon.c | /*
* Daemon main control
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* license in the file COP... |
tomzox/nxtvepg | epgui/pdc_themes.h | <filename>epgui/pdc_themes.h
/*
* PDC themes definition
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of t... |
tomzox/nxtvepg | tcl2c.c | /*
* Build tool for inlining Tcl scripts into the executable
*
* Authors:
*
* Originally based on a tool with the same name, which was part of
* Netvideo version 3.2 by <NAME> <<EMAIL>>
* Copyright (c) Xerox Corporation 1992. All rights reserved.
*
* Completely rewritten and functionality added b... |
tomzox/nxtvepg | epgctl/epgacqclnt.h | <filename>epgctl/epgacqclnt.h
/*
* Nextview EPG network acquisition client
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. Y... |
tomzox/nxtvepg | epgui/wmhooks.c | <reponame>tomzox/nxtvepg
/*
* X11 and Win32 window manager hooks
*
* X11 code by <NAME> (code copied from xawtv-3.87/x11/wmhooks.c)
* Win32 version and Tcl interface: Copyright (C) 1999-2008 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Gener... |
tomzox/nxtvepg | tvsim/vbirec_main.c | /*
* VBI recording tool and shared memory monitor
*
* Copyright (C) 2002-2008 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* license i... |
tomzox/nxtvepg | epgui/timescale.c | <reponame>tomzox/nxtvepg<filename>epgui/timescale.c
/*
* Nextview EPG GUI: PI timescale window
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free So... |
tomzox/nxtvepg | xmltv/xmltv_db.h | <gh_stars>0
/*
* XMLTV content processing
*
* Copyright (C) 2007-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
* licens... |
tomzox/nxtvepg | epgvbi/dvb_scan_pmt.c | /*
##############################################################################
* PAT/PMT decoder derived from w_scan's scan.c
*
* Source code reduction:
* Copyright 2021 by <NAME> (tomzo at users.sf.net)
*
##############################################################################
* Simple MPEG/DVB parser... |
tomzox/nxtvepg | xmltv/xmltv_tags.h | <reponame>tomzox/nxtvepg
/*
* XMLTV element parser
*
* Copyright (C) 2007-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You find a copy of this
... |
tomzox/nxtvepg | epgui/wintvcfg.h | /*
* Retrieve channel table and TV card config from TV app INI files
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. You fin... |
tomzox/nxtvepg | epgvbi/zvbidecoder.c | <gh_stars>0
/*
* libzvbi - Raw vbi decoder
*
* Copyright (C) 2000, 2001, 2002 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in... |
tomzox/nxtvepg | epgui/wintvcfg.c | /*
* Retrieve channel table and TV card config from TV app INI files
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* Some parser code fragments have been extracted from TV applications,
* so their respective copyright applies too. Please see the notes in
* functions headers below.
*
* This progra... |
tomzox/nxtvepg | epgdb/epgnetio.h | <filename>epgdb/epgnetio.h
/*
* Nextview EPG block network client & server
*
* Copyright (C) 1999-2011, 2020-2021 <NAME>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation. Y... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.