/usr/include/vdkb2/vdkb_tabledlg.h is in vdkbuilder2 2.4.0-4.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
vdkb_tabledlg Form
header file: vdkb_tabledlg.h
*/
#ifndef _vdkb_tabledlg_form_h_
#define _vdkb_tabledlg_form_h_
#include <vdk/vdk.h>
// Vdkb_tabledlg FORM CLASS
class Vdkb_tabledlgForm: public VDKForm
{
// gui object declarations
private:
// vdkbuilder reserved gui construction
void GUISetup(void);
int* r; int* c;
public:
Vdkb_tabledlgForm(VDKForm* owner, char* title, int* r, int * c);
~Vdkb_tabledlgForm();
void Setup(void);
/*
gui setup include
do not patch below here
*/
#include <vdkb2/vdkb_tabledlg_gui.h>
};
#endif
|