File: Service_PersonalData.h

package info (click to toggle)
postman 2.0-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,036 kB
  • ctags: 3,078
  • sloc: cpp: 31,131; ansic: 1,948; sh: 787; makefile: 285
file content (25 lines) | stat: -rw-r--r-- 635 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
Service_PersonalData.h
*/

#ifndef __SERVICE_PERSONALDATA_H
#define __SERVICE_PERSONALDATA_H

#include "Import.h"

bool DoService_PersonalData_BEGIN (TProgData *pd);
bool DoService_PersonalData_END (TProgData *pd);
bool DoService_PersonalData_CMD (TProgData *pd);
const char *GetService_PersonalData_NAME (void);
const char *GetService_PersonalData_DESCRIPTION (void);
const char *GetService_PersonalData_ICO_URL (void);
const char *GetService_PersonalData_ICO_ALT (void);

typedef struct 
  {
  TBuffer Name, PAN, NPI, RefFoto, URLFoto;
  } TPersonalInfo;

bool getPersonalInfo (const char *token_name, TBuffer tokeninfo);

#endif