blob: 40bb3d4ae72dff19e23d99819b109adc99626940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
#include "internal.h"
/* pass programm name */
int rccSave(rcc_context ctx) {
return 0;
}
/* Load and Then Save */
int rccLoad(rcc_context ctx) {
return 0;
}
|