Home
last modified time | relevance | path

Searched refs:index (Results 1 – 8 of 8) sorted by relevance

/RevoEX-2.1/include/revolution/nwc24/
DNWC24FriendList.h106 NWC24Err NWC24ReadFriendInfo( NWC24FriendInfo* info, u32 index );
107 NWC24Err NWC24WriteFriendInfo( const NWC24FriendInfo* info, u32 index );
108 NWC24Err NWC24UpdateFriendInfo( const NWC24FriendInfo* info, u32 index );
109 NWC24Err NWC24DeleteFriendInfo( u32 index );
111 NWC24Err NWC24GetFriendInfoStatus( u32* type, u32* status, u32 index );
113 NWC24Err NWC24SearchFriendInfoById( NWC24UserId id, u32* index );
114 NWC24Err NWC24SearchFriendInfoByAddr( const NWC24FriendAddr* addr, u32* index );
119 int NWC24IsFriendInfoThere( u32 index );
DNWC24MsgBoard.h96 const char* data, u32 size, u32 index );
101 NWC24Err NWC24GetCHJumpBlockSize( const NWC24CHJumpObj* chjp, u32* size, u32 index );
103 char* data, u32 size, u32 index );
DNWC24Msg.h328 NWC24Err NWC24GetMsgAttachedSize( const NWC24MsgObj* obj, u32 index, u32* size );
329 NWC24Err NWC24GetMsgAttachedType( const NWC24MsgObj* obj, u32 index, NWC24MIMEType* type );
334 NWC24Err NWC24GetMsgAttachedPtr ( const NWC24MsgObj* obj, u32 index, const char** data );
343 NWC24Err NWC24ReadMsgToId ( const NWC24MsgObj* obj, u32 index, NWC24UserId* userId );
344 NWC24Err NWC24ReadMsgToAddr ( const NWC24MsgObj* obj, u32 index, char* buffer, u32 bufSize );
360 NWC24Err NWC24ReadMsgAttached ( const NWC24MsgObj* obj, u32 index, char* buffer, u32 bufSize );
/RevoEX-2.1/build/libraries/mpds/src/
Dmpdssystem.c79 static inline u16 GetNextIndex(u32 index) in GetNextIndex() argument
81 return (u16)((index + 1) % MPDS_DATASET_NUM); in GetNextIndex()
84 static inline u16 GetPrevIndex(u32 index) in GetPrevIndex() argument
86 return (u16)((index + MPDS_DATASET_NUM - 1) % MPDS_DATASET_NUM); in GetPrevIndex()
100 #define MPDSiLOG_AIDBITS_BEGIN( context, index ) { u16 __prev_aidbits = (context)->ds[(index)].aid…
101 …DBITS_END( context, index ) MPDSiLog( DETAIL_AIDBITS, "ds[%d].aidBits = %04x -> %04x", (index), _…
103 #define MPDSiLOG_AIDBITS_BEGIN( context, index ) ((void)0) argument
104 #define MPDSiLOG_AIDBITS_END( context, index ) ((void)0) argument
/RevoEX-2.1/man/en_US/CSS/
Dtitles2.css21 z-index : auto;
Dtitles.css36 z-index : auto;
/RevoEX-2.1/build/demos/nwc24demo/src/FLViewer/
DFLViewer.c341 void RegisterFriendInfo( u32 index ) in RegisterFriendInfo() argument
361 if ( TRUE == NWC24IsFriendInfoThere( index ) ) in RegisterFriendInfo()
364 err = NWC24UpdateFriendInfo( g_tempInfo, index ); in RegisterFriendInfo()
370 err = NWC24WriteFriendInfo( g_tempInfo, index ); in RegisterFriendInfo()
/RevoEX-2.1/build/demos/nwc24demo/include/
DFLViewer.h118 void RegisterFriendInfo ( u32 index );