mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 04:36:24 +01:00
Fix illegal identifiers, names starting with __ are reserved for the system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25648 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
7023cdec7b
commit
fe86c8557a
@ -367,7 +367,7 @@ url_escape_string(char *outbuf, const char *inbuf) {
|
||||
if(unesc) free(unesc);
|
||||
}
|
||||
|
||||
#ifdef __URL_DEBUG
|
||||
#ifdef URL_DEBUG
|
||||
void
|
||||
url_debug(const URL_t *url) {
|
||||
if( url==NULL ) {
|
||||
@ -394,4 +394,4 @@ url_debug(const URL_t *url) {
|
||||
printf("password=%s\n", url->password );
|
||||
}
|
||||
}
|
||||
#endif //__URL_DEBUG
|
||||
#endif /* URL_DEBUG */
|
||||
|
@ -27,12 +27,12 @@
|
||||
#define inSISREG(base) INPORT8(base)
|
||||
#define outSISREG(base,val) OUTPORT8(base, val)
|
||||
#define orSISREG(base,val) do { \
|
||||
unsigned char __Temp = INPORT8(base); \
|
||||
outSISREG(base, __Temp | (val)); \
|
||||
unsigned char tmp = INPORT8(base); \
|
||||
outSISREG(base, tmp | (val)); \
|
||||
} while (0)
|
||||
#define andSISREG(base,val) do { \
|
||||
unsigned char __Temp = INPORT8(base); \
|
||||
outSISREG(base, __Temp & (val)); \
|
||||
unsigned char tmp = INPORT8(base); \
|
||||
outSISREG(base, tmp & (val)); \
|
||||
} while (0)
|
||||
|
||||
#define inSISIDXREG(base,idx,var) do { \
|
||||
@ -42,22 +42,22 @@
|
||||
OUTPORT8(base, idx); OUTPORT8((base)+1, val); \
|
||||
} while (0)
|
||||
#define orSISIDXREG(base,idx,val) do { \
|
||||
unsigned char __Temp; \
|
||||
unsigned char tmp; \
|
||||
OUTPORT8(base, idx); \
|
||||
__Temp = INPORT8((base)+1)|(val); \
|
||||
outSISIDXREG(base,idx,__Temp); \
|
||||
tmp = INPORT8((base)+1)|(val); \
|
||||
outSISIDXREG(base,idx,tmp); \
|
||||
} while (0)
|
||||
#define andSISIDXREG(base,idx,and) do { \
|
||||
unsigned char __Temp; \
|
||||
unsigned char tmp; \
|
||||
OUTPORT8(base, idx); \
|
||||
__Temp = INPORT8((base)+1)&(and); \
|
||||
outSISIDXREG(base,idx,__Temp); \
|
||||
tmp = INPORT8((base)+1)&(and); \
|
||||
outSISIDXREG(base,idx,tmp); \
|
||||
} while (0)
|
||||
#define setSISIDXREG(base,idx,and,or) do { \
|
||||
unsigned char __Temp; \
|
||||
unsigned char tmp; \
|
||||
OUTPORT8(base, idx); \
|
||||
__Temp = (INPORT8((base)+1)&(and))|(or); \
|
||||
outSISIDXREG(base,idx,__Temp); \
|
||||
tmp = (INPORT8((base)+1)&(and))|(or); \
|
||||
outSISIDXREG(base,idx,tmp); \
|
||||
} while (0)
|
||||
|
||||
#define BITMASK(h,l) (((unsigned)(1U << ((h)-(l)+1))-1)<<(l))
|
||||
|
Loading…
Reference in New Issue
Block a user