~vcs-imports/transmission/trunk

« back to all changes in this revision

Viewing changes to libtransmission/session.h

  • Committer: jordan
  • Date: 2016-03-29 16:37:21 UTC
  • Revision ID: svn-v4:f4695dd4-2c0a-0410-b89c-da849a56a58e:trunk:14724
use '#pragma once' instead of #ifndef..#define..#endif guards

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 #error only libtransmission should #include this header.
12
12
#endif
13
13
 
14
 
#ifndef TR_INTERNAL_H
15
 
#define TR_INTERNAL_H 1
 
14
#pragma once
16
15
 
17
16
#define TR_NAME "Transmission"
18
17
 
327
326
 
328
327
int tr_sessionCountQueueFreeSlots (tr_session * session, tr_direction);
329
328
 
330
 
 
331
 
#endif