Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
98b9663e
Commit
98b9663e
authored
22 years ago
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the correct way to include rfb.h is now "#include <rfb/rfb.h>"
parent
cbf75f79
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
23 additions
and
18 deletions
+23
-18
Makefile.am
contrib/Makefile.am
+1
-0
x11vnc.c
contrib/x11vnc.c
+1
-1
zippy.c
contrib/zippy.c
+2
-2
Makefile.am
examples/Makefile.am
+2
-0
colourmaptest.c
examples/colourmaptest.c
+1
-1
example.c
examples/example.c
+2
-2
fontsel.c
examples/fontsel.c
+1
-1
mac.c
examples/mac.c
+2
-2
pnmshow.c
examples/pnmshow.c
+2
-2
pnmshow24.c
examples/pnmshow24.c
+2
-2
storepasswd.c
examples/storepasswd.c
+1
-1
vncev.c
examples/vncev.c
+1
-1
libvncserver-config.in
libvncserver-config.in
+2
-2
Makefile.am
vncterm/Makefile.am
+2
-0
VNConsole.h
vncterm/VNConsole.h
+1
-1
No files found.
contrib/Makefile.am
View file @
98b9663e
CFLAGS
=
-I
..
LDADD
=
../libvncserver.a
noinst_PROGRAMS
=
zippy
...
...
This diff is collapsed.
Click to expand it.
contrib/x11vnc.c
View file @
98b9663e
...
...
@@ -74,7 +74,7 @@ typedef KeySym X_KeySym;
/* the KeySym typedef cannot be removed, so use an alias for rest of file: */
#define KeySym RFBKeySym
#include
"rfb.h"
#include
<rfb/rfb.h>
Display
*
dpy
=
0
;
int
scr
;
...
...
This diff is collapsed.
Click to expand it.
contrib/zippy.c
View file @
98b9663e
#include <stdio.h>
#include <stdlib.h>
#include <rfb.h>
#include <keysym.h>
#include <rfb
/rfb
.h>
#include <
rfb/
keysym.h>
#include "default8x16.h"
int
maxx
=
400
,
maxy
=
400
,
bpp
=
4
;
...
...
This diff is collapsed.
Click to expand it.
examples/Makefile.am
View file @
98b9663e
CFLAGS
=
-I
..
if
HAVE_LIBPTHREAD
BACKGROUND_TEST
=
blooptest
endif
...
...
This diff is collapsed.
Click to expand it.
examples/colourmaptest.c
View file @
98b9663e
#include
"rfb.h"
#include
<rfb/rfb.h>
int
main
(
int
argc
,
char
**
argv
)
...
...
This diff is collapsed.
Click to expand it.
examples/example.c
View file @
98b9663e
...
...
@@ -31,8 +31,8 @@
#include <netdb.h>
#endif
#include
"rfb.h"
#include
"keysym.h"
#include
<rfb/rfb.h>
#include
<rfb/keysym.h>
const
int
bpp
=
4
;
int
maxx
=
800
,
maxy
=
600
;
...
...
This diff is collapsed.
Click to expand it.
examples/fontsel.c
View file @
98b9663e
#include
"rfb.h"
#include
<rfb/rfb.h>
#define FONTDIR "/usr/lib/kbd/consolefonts/"
#define DEFAULTFONT FONTDIR "default8x16"
...
...
This diff is collapsed.
Click to expand it.
examples/mac.c
View file @
98b9663e
...
...
@@ -38,8 +38,8 @@
#undef Byte
#undef TRUE
#undef Bool
#include
"rfb.h"
#include
"keysym.h"
#include
<rfb/rfb.h>
#include
<rfb/keysym.h>
#include <IOKit/pwr_mgt/IOPMLib.h>
#include <IOKit/pwr_mgt/IOPM.h>
...
...
This diff is collapsed.
Click to expand it.
examples/pnmshow.c
View file @
98b9663e
#include <stdio.h>
#include
"rfb.h"
#include
"keysym.h"
#include
<rfb/rfb.h>
#include
<rfb/keysym.h>
void
HandleKey
(
Bool
down
,
KeySym
key
,
rfbClientPtr
cl
)
{
...
...
This diff is collapsed.
Click to expand it.
examples/pnmshow24.c
View file @
98b9663e
#include <stdio.h>
#include
"rfb.h"
#include
"keysym.h"
#include
<rfb/rfb.h>
#include
<rfb/keysym.h>
#ifndef ALLOW24BPP
#error "I need the ALLOW24BPP flag to work"
...
...
This diff is collapsed.
Click to expand it.
examples/storepasswd.c
View file @
98b9663e
...
...
@@ -20,7 +20,7 @@
*/
#include <stdio.h>
#include
"rfb.h"
#include
<rfb/rfb.h>
void
usage
(
void
)
{
...
...
This diff is collapsed.
Click to expand it.
examples/vncev.c
View file @
98b9663e
...
...
@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include
"rfb.h"
#include
<rfb/rfb.h>
#include "default8x16.h"
char
f
[
640
*
480
];
...
...
This diff is collapsed.
Click to expand it.
libvncserver-config.in
View file @
98b9663e
...
...
@@ -39,8 +39,8 @@ while test $# -gt 0; do
echo
@VERSION@
;;
--cflags
)
if
test
@includedir@
!=
/usr/include
;
then
includes
=
-I
@includedir@
if
[
"@includedir@"
!=
/usr/include
]
;
then
includes
=
-I
@includedir@
fi
echo
$includes
;;
...
...
This diff is collapsed.
Click to expand it.
vncterm/Makefile.am
View file @
98b9663e
...
...
@@ -2,6 +2,8 @@ CONSOLE_SRCS=VNConsole.c
noinst_HEADERS
=
VNConsole.h vga.h
CFLAGS
=
-I
..
LDADD
=
../libvncserver.a
INCLUDES
=
-I
.
-I
../include
...
...
This diff is collapsed.
Click to expand it.
vncterm/VNConsole.h
View file @
98b9663e
#include
"rfb.h"
#include
<rfb/rfb.h>
/* this is now the default */
#define USE_ATTRIBUTE_BUFFER
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment