Beispiel #1
0
 private AprTimeExp(apr_time_exp_t *ptr)
 {
     mTimeExp = ptr;
 }
Beispiel #2
0
 public AprTimeExp(out GCHandle handle)
 {
     handle = GCHandle.Alloc(new apr_time_exp_t(),GCHandleType.Pinned);
     mTimeExp = (apr_time_exp_t *)handle.AddrOfPinnedObject().ToPointer();
 }
Beispiel #3
0
 public AprTimeExp(IntPtr ptr)
 {
     mTimeExp = (apr_time_exp_t *)ptr.ToPointer();
 }
Beispiel #4
0
 public void ClearPtr()
 {
     mTimeExp = null;
 }
 public void ClearPtr()
 {
     mTimeExp = null;
 }
 public AprTimeExp(IntPtr ptr)
 {
     mTimeExp = (apr_time_exp_t *)ptr.ToPointer();
 }
 public AprTimeExp(out GCHandle handle)
 {
     handle   = GCHandle.Alloc(new apr_time_exp_t(), GCHandleType.Pinned);
     mTimeExp = (apr_time_exp_t *)handle.AddrOfPinnedObject().ToPointer();
 }
 private AprTimeExp(apr_time_exp_t *ptr)
 {
     mTimeExp = ptr;
 }