Avoid starting a comment with */*
Even though -Wcomment doesn't mind it (in gcc or clang), the appearance of */* confuses the syntax highlighter of some editors (eg. vim), and causes warnings in MSVC. Signed-off-by: Peter Harris <pharris@opentext.com> Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
committed by
Keith Packard
parent
8b36e1ec8d
commit
5eb77697ea
@@ -57,24 +57,24 @@ extern _X_EXPORT int dixLookupProperty(PropertyPtr * /*result */ ,
|
||||
ClientPtr /*pClient */ ,
|
||||
Mask /*access_mode */ );
|
||||
|
||||
extern _X_EXPORT int dixChangeWindowProperty(ClientPtr /*pClient */ ,
|
||||
WindowPtr /*pWin */ ,
|
||||
Atom /*property */ ,
|
||||
Atom /*type */ ,
|
||||
int /*format */ ,
|
||||
int /*mode */ ,
|
||||
unsigned long /*len */ ,
|
||||
void */*value */ ,
|
||||
Bool /*sendevent */ );
|
||||
extern _X_EXPORT int dixChangeWindowProperty(ClientPtr pClient,
|
||||
WindowPtr pWin,
|
||||
Atom property,
|
||||
Atom type,
|
||||
int format,
|
||||
int mode,
|
||||
unsigned long len,
|
||||
void *value,
|
||||
Bool sendevent);
|
||||
|
||||
extern _X_EXPORT int ChangeWindowProperty(WindowPtr /*pWin */ ,
|
||||
Atom /*property */ ,
|
||||
Atom /*type */ ,
|
||||
int /*format */ ,
|
||||
int /*mode */ ,
|
||||
unsigned long /*len */ ,
|
||||
void */*value */ ,
|
||||
Bool /*sendevent */ );
|
||||
extern _X_EXPORT int ChangeWindowProperty(WindowPtr pWin,
|
||||
Atom property,
|
||||
Atom type,
|
||||
int format,
|
||||
int mode,
|
||||
unsigned long len,
|
||||
void *value,
|
||||
Bool sendevent);
|
||||
|
||||
extern _X_EXPORT int DeleteProperty(ClientPtr /*client */ ,
|
||||
WindowPtr /*pWin */ ,
|
||||
|
||||
Reference in New Issue
Block a user