Changeset 647 for trunk/libs/libalmosmkh
- Timestamp:
- Oct 22, 2019, 1:48:51 PM (6 years ago)
- Location:
- trunk/libs/libalmosmkh
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/libalmosmkh/almosmkh.c
r643 r647 1456 1456 ///////////////////////////////////////////////////////////////////////////////////////// 1457 1457 1458 ///////////////////////////////// 1459 int fbf_get_config( int * width,1460 int * height,1461 int * type )1458 ///////////////////////////////////////// 1459 int fbf_get_config( unsigned int * width, 1460 unsigned int * height, 1461 unsigned int * type ) 1462 1462 { 1463 1463 return hal_user_syscall( SYS_FBF, … … 1468 1468 } 1469 1469 1470 //////////////////////////// 1471 int fbf_read( void * buffer,1472 intlength,1473 intoffset )1470 //////////////////////////////////// 1471 int fbf_read( void * buffer, 1472 unsigned int length, 1473 unsigned int offset ) 1474 1474 { 1475 1475 return hal_user_syscall( SYS_FBF, … … 1480 1480 } 1481 1481 1482 //////////////////////////// 1483 int fbf_write( void * buffer,1484 intlength,1485 intoffset )1482 ///////////////////////////////////// 1483 int fbf_write( void * buffer, 1484 unsigned int length, 1485 unsigned int offset ) 1486 1486 { 1487 1487 return hal_user_syscall( SYS_FBF, -
trunk/libs/libalmosmkh/almosmkh.h
r643 r647 538 538 * @ returns 0 if success / returns -1 if error. 539 539 ****************************************************************************************/ 540 int fbf_get_config( int * width,541 int * height,542 int * type );540 int fbf_get_config( unsigned int * width, 541 unsigned int * height, 542 unsigned int * type ); 543 543 544 544 /***************************************************************************************** … … 551 551 * @ returns 0 if success / returns -1 if error. 552 552 ****************************************************************************************/ 553 int fbf_read( void * buffer,554 intlength,555 intoffset );553 int fbf_read( void * buffer, 554 unsigned int length, 555 unsigned int offset ); 556 556 557 557 /***************************************************************************************** … … 564 564 * @ returns 0 if success / returns -1 if error. 565 565 ****************************************************************************************/ 566 int fbf_write( void * buffer,567 intlength,568 intoffset );566 int fbf_write( void * buffer, 567 unsigned int length, 568 unsigned int offset ); 569 569 570 570 #endif /* _LIBALMOSMKH_H_ */
Note: See TracChangeset
for help on using the changeset viewer.