Changeset 39
- Timestamp:
- 02/10/06 14:58:15 (3 years ago)
- Location:
- trunk/orca
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/op.c
r38 r39 505 505 Returns CMP_ value. 506 506 */ 507 static int compareValue( OValue* a,OValue* b )507 static int compareValue( const OValue* a, const OValue* b ) 508 508 { 509 509 if( a->type == OT_INTEGER ) … … 689 689 690 690 691 static int orTypeEqual( OValue* a,OValue* b )691 static int orTypeEqual( const OValue* a, const OValue* b ) 692 692 { 693 693 int logic = 0; … … 744 744 745 745 746 int orEqual( OValue* a,OValue* b )746 int orEqual( const OValue* a, const OValue* b ) 747 747 { 748 748 if( a->type == OT_INTEGER ) -
trunk/orca/ovalue.h
r38 r39 397 397 void orRegisterPortDevice( OPortDevice* ); 398 398 void orRegisterFileLoader( int (*func)( const char*, uint8_t*, int ) ); 399 int orEqual( OValue*,OValue* );399 int orEqual( const OValue*, const OValue* ); 400 400 void orForm( OString* out, const OValue* val ); 401 401 void orMold( OString* out, const OValue* val );
