blob: 50db8ff27fc630679eabde74faf6609a405c879f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "pch.h"
#include "Links.h"
#include "status.h"
using namespace mupdfwinrt;
Links::Links(void)
{
this->uri = nullptr;
this->page_num = -1;
this->type = NOT_SET;
}
|