Index: move.c =================================================================== --- move.c (revision 4916) +++ move.c (revision 4917) @@ -67,7 +67,7 @@ * moves the object identified by its data pointers and the type * not we don't bump the undo serial number */ -void *MoveObject(int Type, void *Ptr1, void *Ptr2, void *Ptr3, pcb_coord_t DX, pcb_coord_t DY) +void *pcb_move_obj(int Type, void *Ptr1, void *Ptr2, void *Ptr3, pcb_coord_t DX, pcb_coord_t DY) { void *result; pcb_opctx_t ctx; @@ -84,7 +84,7 @@ * moves the object identified by its data pointers and the type * as well as all attached rubberband lines */ -void *MoveObjectAndRubberband(int Type, void *Ptr1, void *Ptr2, void *Ptr3, pcb_coord_t DX, pcb_coord_t DY) +void *pcb_move_obj_and_rubberband(int Type, void *Ptr1, void *Ptr2, void *Ptr3, pcb_coord_t DX, pcb_coord_t DY) { pcb_rubberband_t *ptr; pcb_opctx_t ctx; @@ -131,7 +131,7 @@ * moves the object identified by its data pointers and the type * to a new layer without changing it's position */ -void *MoveObjectToLayer(int Type, void *Ptr1, void *Ptr2, void *Ptr3, pcb_layer_t *Target, pcb_bool enmasse) +void *pcb_move_obj_to_layer(int Type, void *Ptr1, void *Ptr2, void *Ptr3, pcb_layer_t *Target, pcb_bool enmasse) { void *result; pcb_opctx_t ctx; @@ -149,7 +149,7 @@ * moves the selected objects to a new layer without changing their * positions */ -pcb_bool MoveSelectedObjectsToLayer(pcb_layer_t *Target) +pcb_bool pcb_move_selected_objs_to_layer(pcb_layer_t *Target) { pcb_bool changed; pcb_opctx_t ctx;