예제 #1
0
파일: OeipPipe.cs 프로젝트: kbitc/oeip
        public int AddLayerStruct <T>(string layerName, OeipLayerType layerType, T t) where T : struct
        {
            int layerIndex = OeipHelper.addPiepLayer(PipeId, layerName, layerType, IntPtr.Zero);

            UpdateParametStruct(layerIndex, t);
            return(layerIndex);
        }
예제 #2
0
파일: OeipPipe.cs 프로젝트: kbitc/oeip
 public int AddLayer(string layerName, OeipLayerType layerType)
 {
     return(OeipHelper.addPiepLayer(PipeId, layerName, layerType, IntPtr.Zero));
 }
예제 #3
0
 public static extern int addPiepLayer(int pipeId, string layerName, OeipLayerType layerType, IntPtr paramet);