You need not to initialize it at all.

You can use it directly in following way.

DECLARE c1 YOUR_PACKAGE.YOUR_REF_CUR_TYPE;
BEGIN
...
OPEN c1 FOR ...
...
END;


Please correct me if I am wrong.